re: [Koha] problem with cookie based authentication with koha-1.2.3
Did anyone see or respond to following message a few days ago? I haven't seen a response and am seeing something similar with a windows install of koha-1.2.3 when in the Intranet module. Does anyone have an idea of what to check to resove this? Thanks, Rob ----- Original Message ----- From: "Hor Hen Ley" <henley@bii.a-star.edu.sg> To: <koha@lists.katipo.co.nz> Sent: Monday, February 10, 2003 3:43 AM Subject: [Koha] problem with cookie based authentication with koha-1.2.3 hi all, Its kinda funny but i needed to logged again and again for the koha intranet. for example when i go to the intranet mainpage. i am prompted to login. after logging in, i click on "acquisition" i am again prompted to login again ! same goes for almost all other admin functions e.g circulation, parameters etc. i used the install.pl script to install and have chosen the cookie based authentication instead of httpd based one. any insight would be great here thanxs in adv -- Hor Hen Ley ( bii web team ) henley@bii.a-star.edu.sg my pgp publics are available at http://www.bii-sg.org/~henley/
On Thu, 13 Feb 2003 robweir@alum.drexel.edu wrote:
Did anyone see or respond to following message a few days ago? I haven't seen a response and am seeing something similar with a windows install of koha-1.2.3 when in the Intranet module.
Does anyone have an idea of what to check to resove this?
It's a bug in the Auth.pm module. It's assigning a new session cookie immediately after the user has authenticated: Line 176 in C4/Auth.pm reads: $sessionID=int(rand()*100000).'-'.time(); and it should read: $sessionID or $sessionID=int(rand()*10000).'-'.time(); Steve.
participants (2)
-
robweir@alum.drexel.edu -
Tonnesen Steve