Login returns to login. Similar problem as 896193
Status: Inactive
Brought to you by:
bantik
login and then it takes you right back to http://
SERVER_NAME/projectory/projectory.cgi?
command=showTaskPad&authtoken=XXXX and ignores your
login.
If I enter invalid login credentials it tells me so but
when entering valid credentials it ignores my login.
I have applied the patch listed in but 896193 but the
problem remains.
Apache - 2.0.44
Red Hat Linux 8.0
Perl - 5.8.0
I am still looking at what might be causing this and
will update if I see it.
Logged In: NO
I'm getting the same error, also after applying the patch 896193.
OS X 10.3.4
Apache 2.0.48
Perl 5.8.1
And browsing with Safari -- just tried Mozilla, it doesn't work either.
Logged In: YES
user_id=1070192
I'm getting the same error, also after applying the patch 896193.
OS X 10.3.4
Apache 2.0.48
Perl 5.8.1
And browsing with Safari -- just tried Mozilla, it doesn't work either.
Logged In: YES
user_id=162168
I'm also having the same problem...
I installed Projectory a few weeks ago and it worked fine
with Firefox. After that I changed some configs for httpd
and php.
Now when I try to login using firefox 1.0.7 I return to the
login page, no error messages, nothing...
If I try to login using IE 6 then it works ok.
My server config:
RedHat 8.0
httpd-2.0.40-8
php-4.2.2-8.0.8
mysql-3.23.52-3
Logged In: YES
user_id=162168
The reason is that firefox puts several cookies in the same
line, they are separated by a ';' char.
The following correction works for me:
replace the line
$_encrypted =~ s/^token\=(.+)/$1/i;
with
$_encrypted =~ s/^token\=(.+)\;.+/$1/i;
thats all!