sessions

2005-10-31 Thread Adriano Allora
hi to all, I use session (CGI::Sessions) to record some data in a textual search-engine (CQP). I have this problem: I need to destroy a session before starting the new one, but I cannot. actually I wrote this code: $qualecookie = $pagina->cookie(CGIRICERCA); if($qualecoo

sessions

2008-08-23 Thread JuneEarth
How to make CGI sessions to be shared among multi-webservers? Thanks. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: sessions

2008-08-24 Thread David Dorward
JuneEarth wrote: > How to make CGI sessions to be shared among multi-webservers? Thanks. They have to use a shared data store for the session information. Using a database for that would be one approach. -- David Dorward <http://dorward.me.uk/> -- To un

Re: sessions

2008-08-24 Thread Sean Davis
On Sat, Aug 23, 2008 at 2:52 AM, JuneEarth <[EMAIL PROTECTED]> wrote: > How to make CGI sessions to be shared among multi-webservers? Thanks. The simplest way is to use a transactional database system. You read the session from the database and write back to the database. It will wor

Re: sessions

2008-08-25 Thread Lars Haugseth
* [EMAIL PROTECTED] (David Dorward) wrote: > > JuneEarth wrote: > > How to make CGI sessions to be shared among multi-webservers? Thanks. > > They have to use a shared data store for the session information. Using > a database for that would be one approach. Another s

Re: sessions

2008-08-25 Thread Jeff Pang
On Mon, Aug 25, 2008 at 2:06 AM, Lars Haugseth <[EMAIL PROTECTED]> wrote: > > Another solution, which is not really what the OP was asking about, but > probably fixes his problem, is to ensure that each request from the same > client will always be sent to the same webserver (based on a hashing of

Re: sessions

2008-08-25 Thread Lawrence Statton
> > > > Another solution, which is not really what the OP was asking about, but > > probably fixes his problem, is to ensure that each request from the same > > client will always be sent to the same webserver (based on a hashing of > > the client's IP address, for example.) > > But client's IP ca

Re: sessions

2008-08-26 Thread Lars Haugseth
* [EMAIL PROTECTED] ("Jeff Pang") wrote: > > On Mon, Aug 25, 2008 at 2:06 AM, Lars Haugseth <[EMAIL PROTECTED]> wrote: > > > > > Another solution, which is not really what the OP was asking about, but > > probably fixes his problem, is to ensure that each request from the same > > client will alw

Re: sessions

2008-08-26 Thread Dwalu Z. Khasu
On Sun, 24 Aug 2008, Lars Haugseth wrote: =>* [EMAIL PROTECTED] (David Dorward) wrote: =>> =>> JuneEarth wrote: =>> > How to make CGI sessions to be shared among multi-webservers? Thanks. =>> =>> They have to use a shared data store for the session inform

user sessions

2009-03-04 Thread Stanisław T. Findeisen
Hello, how to make user sessions? Something like: * log in using password * maintain session state across several executions of several scripts forming the application * log out Do I have to do it manually or is there something ready that you can recommend? Thank you. STF

Tutorial for sessions

2002-07-29 Thread Ken Cole
Hi, Is there a good, simple tutorial on using cgi for session control out there anywhere. Thanks Ken -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: user sessions

2009-03-04 Thread Gunnar Hjalmarsson
Stanisław T. Findeisen wrote: Hello, how to make user sessions? Something like: * log in using password * maintain session state across several executions of several scripts forming the application * log out Do I have to do it manually or is there something ready that you can recommend

Re: user sessions

2009-03-04 Thread Greg Jetter
On Wednesday 04 March 2009 12:24:39 am Stanisław T. Findeisen wrote: > Hello, how to make user sessions? Something like: > > * log in using password > * maintain session state across several executions of several scripts > forming the application > * log out > > Do I have