Re: [pmwiki-users] author field

2009-11-18 Thread Peter Bowers
On Wed, Nov 18, 2009 at 6:37 PM, Ryan O'Toole wrote: > What page variable is used for displaying the Author field from the edit > form? $Author seems to be about the current viewer, not the name submitted > to that field. Try $LastModifiedBy if you are looking for what is stored in the page (last

[pmwiki-users] author field

2009-11-18 Thread Ryan O'Toole
What page variable is used for displaying the Author field from the edit form? $Author seems to be about the current viewer, not the name submitted to that field. -- ryan ___ pmwiki-users mailing list pmwiki-users@pmichaud.com http://www.pmichaud.com/mai

Re: [pmwiki-users] Author field and usernames problem

2007-01-22 Thread Michele Cabano
Patrick R. Michaud wrote: > If you just want PmWiki to allow any character in author names, > you might try setting (note the leading space): > > $AuthorNameChars = " -\\xff"; > > Pm > This solve my problem once for all! I put this in config.php beetween authuser inclusion ( include_once(.

Re: [pmwiki-users] Author field and usernames problem

2007-01-22 Thread Patrick R. Michaud
On Mon, Jan 22, 2007 at 06:06:59PM +0100, Michele Cabano wrote: > Patrick R. Michaud wrote: > > If you want the Author name to always exactly follow the username > > login value, then use the following sequence: > > > > include_once('scripts/authuser.php'); > > if (@$AuthId) $Author = $Aut

Re: [pmwiki-users] Author field and usernames problem

2007-01-22 Thread Michele Cabano
Patrick R. Michaud wrote: > If you want the Author name to always exactly follow the username > login value, then use the following sequence: > > include_once('scripts/authuser.php'); > if (@$AuthId) $Author = $AuthId; > > See http://www.pmwiki.org/wiki/Cookbook/RequireAuthor for more deta

Re: [pmwiki-users] Author field and usernames problem

2007-01-22 Thread Patrick R. Michaud
On Mon, Jan 22, 2007 at 02:28:13PM -, [EMAIL PROTECTED] wrote: > I set all the necessary parameters in config.php for always requiring an > author and setting the author field to the username login value. > [...] > For example, if I modify a page which requires particular privileges: > 1) At f

[pmwiki-users] Author field and usernames problem

2007-01-22 Thread mcabano
Hi all. I have installed PmWiki and customized it: in particular I use the AuthUser recipe to increase user privileges granularity on the different pages. I also use .htpasswd file in 'local' folder (/var/www/pmwiki/local) to store passwords. I set all the necessary parameters in config.php for