1. Set the title of your PmWiki installation: set $WikiTitle in config.php
2. Select an appropriate skin and set $Skin in config.php
3. Simplify the URL. If you don't have .htaccess, follow these steps: set $EnablePathInfo = 0; $ScriptUrl = "http://www.example.com/~someuser/pmwiki/";
4. Set an admin password for the site. This is locked by default. The admin password can be used to "overrule" passwords. Go to http://www.pmwiki.org/wiki/PmWiki/PasswordsAdmin?action=crypt and encrypt a password; you can then put the encrypted passwords in config.php thus: $DefaultPasswords['admin']='encrypted_value';
5. Set a password to edit, view attribute, view source, and view diff:
$DefaultPasswords['edit'] = 'encrypted_value';
$DefaultPasswords['attr'] = 'encrypted_value';
$HandleAuth['source'] ='source';
$DefaultPasswords['source'] = 'encrypted_value';
$HandleAuth['diff'] = 'diff';
$DefaultPasswords['diff'] = 'encrypted_value';
6. GetRidOfMain and use hyphens instead of spaces: download modified spacewikiwords.php
7. Modify your skin accordingly to hide/show elements you want.
Like this post? Please help me pay for my Internet access.
Links to this post
Labels: PmWiki
2. Select an appropriate skin and set $Skin in config.php
3. Simplify the URL. If you don't have .htaccess, follow these steps: set $EnablePathInfo = 0; $ScriptUrl = "http://www.example.com/~someuser/pmwiki/";
4. Set an admin password for the site. This is locked by default. The admin password can be used to "overrule" passwords. Go to http://www.pmwiki.org/wiki/PmWiki/PasswordsAdmin?action=crypt and encrypt a password; you can then put the encrypted passwords in config.php thus: $DefaultPasswords['admin']='encrypted_value';
5. Set a password to edit, view attribute, view source, and view diff:
$DefaultPasswords['edit'] = 'encrypted_value';
$DefaultPasswords['attr'] = 'encrypted_value';
$HandleAuth['source'] ='source';
$DefaultPasswords['source'] = 'encrypted_value';
$HandleAuth['diff'] = 'diff';
$DefaultPasswords['diff'] = 'encrypted_value';
6. GetRidOfMain and use hyphens instead of spaces: download modified spacewikiwords.php
7. Modify your skin accordingly to hide/show elements you want.
Like this post? Please help me pay for my Internet access.
Links to this post
Labels: PmWiki




