Does anyone no how to change..
yoursite.com/page.php?PHPSESSID=uviuv83r2nv823
--into--
yoursite.com/page.php?sid=ubfy434nv456
Does anyone no how to change..
yoursite.com/page.php?PHPSESSID=uviuv83r2nv823
--into--
yoursite.com/page.php?sid=ubfy434nv456
You must edit the php.ini.
"session.name" (I believe) is what you want to change.
ok.. thanx,
would there be another way of changing it if i could'nt access the PHP.ini file??
MobiTec,
Try using .htaccess to set the value for session.name. Please read up on How to change configuration settings
and then adding an .htaccess file to the highest level web directory for which you want this change to be effective.
The contents of the .htaccess file should be:
php_value session.name "sid"
This obviates the need to set session_name() in each of your scripts.
Thank you very much guys.... That really helped
Much appreaciated