in reply to Re^2: Cookie->fetch problem
in thread Cookie->fetch problem
When you call SetUserSessionCookie what do you pass as $sname and $sid, if $sid is zero or $sname is not CGISESSID that may be where your problem is.
Infact i forgot to suggest you check your mysql table for a sessionid of 0, and if you find it plain delete it. if you call $session = new CGI::Session("driver:MySQL", $sid, {Handle=>$dbh, LockHandle=>$dbh}); when $sid is zero and there is no sessionid 0 you will get a new sessionid back
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Cookie->fetch problem
by tultalk (Monk) on Mar 09, 2017 at 23:27 UTC | |
by huck (Prior) on Mar 09, 2017 at 23:49 UTC | |
|
Re^4: Cookie->fetch problem
by tultalk (Monk) on Mar 09, 2017 at 23:57 UTC | |
by huck (Prior) on Mar 10, 2017 at 00:09 UTC |