[PHP] My system don't store session data, anybody can help me!!

2001-02-26 Thread Securez
In my system i have apache-1.3.17, (i probe 1.3.14 but the problem persist), when i register a variable the session is generatet and a file sess_f5g ... is generated under /tmp but the file is empty size=0, and no data is stored. ?php session_start(); if( !isset( $c)) {

RE: [PHP] My system don't store session data, anybody can help me!!

2001-02-26 Thread Securez
This is a correction: I create a new dir /usr/local/tmp with this perms: rwxrwxrwtrootroot and change the dir for store session data to /usr/local/tmp and works, but in certain situation the some data aren't sotored, :(. in /tmp don't store data why?? I set loogin to a file if i set

Re: [PHP] My system don't store session data, anybody can help me!!

2001-02-26 Thread Christian Reiniger
On Monday 26 February 2001 10:26, Securez wrote: ?php session_start(); if( !isset( $c)) { session_register("c"); $c = 1; } echo $c . "br"; ? a href="index.php"reload/A this example that works fine in other system with the same configuration, don't work in my machine,