|
Posted by Hemant on 11/22/05 04:25
In the url
http://xxxxxxx/crew.php?sid=f2a6dd3a14fb27d5ade7c30&stg=0af96ef5466b9..."
the information "id=b564065cd3f5187389a93ca" is coming due to server
behaviour.
session.use_trans_sid is the one playing the role behind this.
Simply put the line
ini_set("session.use_trans_sid","0");
as the top line in your file [ or common file that is being inlcuded
each time in your code, if it doesnt work try writing
ini_set("session.use_trans_sid",0);
or ini_set("session.use_trans_sid","off"); or
ini_set("session.use_trans_sid","Off");]
This will stop the information "id=b564065cd3f5187389a93ca" coming
anymore.
for more information of such configuation options pls visit
http://in2.php.net/manual/en/ini.php#ini.list
Regards,
Hemant
[Back to original message]
|