in reply to multiple browserwindows session bug
As a start, in your cgiapp_init you would need to avoid sending cookies:
Next you'll have to arrange for all your urls to contain the session id (and you will learn much while contemplating how to do that).$self->session_config( CGI_SESSION_OPTIONS => [ # whatever ], SEND_COOKIE => 0, # defualt is 1 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: multiple browserwindows session bug
by boboson (Monk) on Jun 12, 2006 at 12:43 UTC |