Wiki solution

0 votes

Product

I use pmwiki

Markdown

As markdown use: Markdown extension

Restrict access

Either you have single admin password (no user name) or you use authuser.php module to allow users.

In config you need to set permissions:

# require valid login before viewing pages
$DefaultPasswords['read'] = 'id:*';

# All admins and Fred and Tom may edit -> only if authuser.php is used!!!
$DefaultPasswords['edit'] = array('@admins', 'id:Fred,Tom');

To hide passwords:

crypt function
crypt pass form

asked Jan 18, 2018 in dev-sites by pepeek (220 points)
edited Jan 18, 2018 by pepeek

Please log in or register to answer this question.