Forum Moderators: coopster

Message Too Old, No Replies

Need help with "PHPSESSID"

... hide PHPSESSID

         

incognito

9:12 am on May 11, 2003 (gmt 0)

10+ Year Member



Hi,

I build a new website based on php session. In home page I have:

session_start();
header("Cache-control: private"); //IE 6 Fix

The problem:

original link are just :
[......]

after I start the session my link:
[......]

How can I hide this PHPSESSID?

Thks for help.

grahamstewart

10:17 am on May 11, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



There are two ways to pass session IDs from page to page in PHP.

Either by putting the session id in the address url, or by putting it in a cookie on the users machine.

Check your configuration settings for

session.use_cookies and session.use_only_cookies 

See [php.net...] for more info.

incognito

11:55 am on May 14, 2003 (gmt 0)

10+ Year Member



Thnks.