Hi all,

I'm new to PmWiki, and cannot get my first attempt to force users to login with BOTH username AND password. It's for my students, and the username is sfp2, the password is student. It works fine. The problem is that access is granted even if one inputs just the password on its own, with no username, so that anonymous login is effectively allowed... Is there a way to FORCE username as well as password login? Also, will it work even if a student accessed a particular page directly skipping over the main home page of the site? Thanks for any hints, cannot find anything specific in the documentation, perhaps I'm wrong... Gabriele

Wiki site: www.gazzaro.it/b/PmWiki
Username: sfp2 (or NOTHING AT THE MOMENT!)
Password: student

Server: Windows Server 2003 with PHP 5*
*
config.php:

<?php if (!defined('PmWiki')) exit();
$WikiTitle = 'PmWiki';

$ScriptUrl = 'http://www.gazzaro.it/b/Pmwiki/pmwiki.php';
$PubDirUrl = 'http://www.gazzaro.it/b/Pmwiki/pub';

$DefaultPasswords['admin'] = crypt('password1');
$DefaultPasswords['attr'] = crypt('password1');
$DefaultPasswords['read'] = crypt('password2');
$DefaultPasswords['edit'] = crypt('password2');

include_once("scripts/xlpage-utf-8.php");
include_once("$FarmD/cookbook/pmform.php");
include_once("$FarmD/scripts/authuser.php");
include_once("$FarmD/cookbook/analyze.php");
$AnalyzeKey = 'aailsa';

$DiffKeepDays=690;

$EnableRelativePageVars = 1;

$UnapprovedLinkCountMax = 5;
include_once("scripts/urlapprove.php");

$GUIButtons['h2'] = array(400, '\\n!! ', '\\n', '$[Heading]',
                     '$GUIButtonDirUrlFmt/h2.gif"$[Heading]"');
$GUIButtons['h3'] = array(402, '\\n!!! ', '\\n', '$[Subheading]',
                     '$GUIButtonDirUrlFmt/h3.gif"$[Subheading]"');
$GUIButtons['indent'] = array(500, '\\n->', '\\n', '$[Indented text]',
                     '$GUIButtonDirUrlFmt/indent.gif"$[Indented text]"');
$GUIButtons['outdent'] = array(510, '\\n-<', '\\n', '$[Hanging indent]',
                     '$GUIButtonDirUrlFmt/outdent.gif"$[Hanging indent]"');
$GUIButtons['ol'] = array(520, '\\n# ', '\\n', '$[Ordered list]',
'$GUIButtonDirUrlFmt/ol.gif"$[Ordered (numbered) list]"');
$GUIButtons['ul'] = array(530, '\\n* ', '\\n', '$[Unordered list]',
'$GUIButtonDirUrlFmt/ul.gif"$[Unordered (bullet) list]"');
$GUIButtons['hr'] = array(540, '\\n----\\n', '', '',
                     '$GUIButtonDirUrlFmt/hr.gif"$[Horizontal rule]"');
 $GUIButtons['table'] = array(600,
'||border=1 width=80%\\n||!Hdr ||!Hdr ||!Hdr ||\\n|| || || ||\\n|| || || ||\\n', '', '',
                     '$GUIButtonDirUrlFmt/table.gif"$[Table]"');

$MaxIncludes=500;
include_once("$FarmD/cookbook/blogit/blogit.php");


_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to