This is a discussion on php sessions within the alt.comp.lang.php forums, part of the PHP Programming Forums category; hello. i have a big problem with sessions. on my local serwer (win98/apache1.3.19/php4.0.5) scripts ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
hello.
i have a big problem with sessions. on my local serwer (win98/apache1.3.19/php4.0.5) scripts with sessions working really good. i mean i register session and i use them. when i close my browser - all sessions are self destroyed. but on my external server (linux/apache1.3.23/php4.2.3) session is stored all time! it cannot be destroyed after closing browser - why? can U help me, please? regards kuba |
|
|||
|
Maybe session.save_handler is set to cookie, so the session id is not stored on the server files, but on your computer cookie. This
is a php.ini config Savut "kuba" <kuba@kasa.pl> wrote in message news:bv99ki$bte$1@nemesis.news.tpi.pl... > hello. > > i have a big problem with sessions. > > on my local serwer (win98/apache1.3.19/php4.0.5) scripts with sessions > working really good. > i mean i register session and i use them. when i close my browser - all > sessions are self destroyed. > > but on my external server (linux/apache1.3.23/php4.2.3) session is stored > all time! > it cannot be destroyed after closing browser - why? > > can U help me, please? > > regards > > kuba > > |
|
|||
|
> Maybe session.save_handler is set to cookie, so the session id is not
stored on the server files, but on your computer cookie. This > is a php.ini config this var is set to files :/ session.save_handler files ( [in phpinfo()] on my local and external server) what's wrong? have U any another idea ? thank U 4 reply! regards kuba |