Hans schrieb:
> I wonder if it is possible to set auth groups in config, as one can
> set individual users with  a password, like
>
>    $AuthUser['bob'] = crypt('bobspassword');
>
> thereby not using SiteAdmin.AuthUser
>
>
> Does it work to set group associations in config.php like
>
>    $AuthUser['@admin'] = array('bob','ann','jack');
>
> ? or in a different way?
>   

I use this:

$AuthUser['Admin'] = array('XXXXXXXXXXXXXX', '@admins');
$AuthUser['Author'] = array('XXXXXXXXXXXXXX', '@authors');

$DefaultPasswords['admin'] = array('@admins', 'id:Admin');
$DefaultPasswords['read'] = '@authors';

grz nos

> thanks for any help here!
>
>   ~Hans   
>
>
> _______________________________________________
> pmwiki-users mailing list
> [email protected]
> http://www.pmichaud.com/mailman/listinfo/pmwiki-users
>
>   


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

Reply via email to