Hi,
I am wonder why all the session i create at server /tmp , is empty value. The file doesn't exits, just is empty, as shown in below:
-rw------- 1 httpd netsite 0 Feb 2 14:12 sess_f882015a074cf3e05625d6d150b98ec5
the file permission for the /tmp is '777'. My machine running on php4.0.6.
This is the script i use to create the session :
<pre>
$cookie['pre'] = strtolower("abc");
$cookie['name'] = strtolower($name);
session_register('cookie');
</pre>
Furthurmore, i do declare the systax below on top of page:
ini_alter('session.use_cookies', '0');
ini_alter('session.use_trans_sid', '1');
What could be the possible problem?
Thanks
Louis