[AuthPG] AuthPGCookieName
Brought to you by:
minskim
From: Stephane P. <ste...@wh...> - 2001-07-12 15:42:19
|
Hi, I'm using AuthPG-1.2b2 When I don't use cookies (AuthPGCookie off), all is working fine but, when I try to use cookies, here is what happens: .htaccess: ----------------------------- AuthName my_auth AuthType Basic AuthPGHost localhost AuthPGDatabase test71 AuthPGUserTable person AuthPGPasswordField password AuthPGUserNameField login AuthPGEncrypted off AuthPGPort 5433 AuthPGCookie on AuthPGAuthoritative on require user ----------------------------- The query sent to postgres is: select password from person where login='(null)' When I use AuthPGCookieName "AUTHPG" I have this message: mypages/.htaccess: AuthPGCookieName must be On or Off which seems to be wrong Any idea ? |