Re: [nyphp-talk] PHPSESSID Issue

2007-10-08 Thread Brian D.
I think what you want to do is actually set "use_trans_id" to TRUE. >From the docs: session.use_trans_sid whether transparent sid support is enabled or not. Defaults to 0 (disabled). You want the sid to be transparent, so I would set that to true and see if that helps. - Brian On 10/4/07, Randa

[nyphp-talk] PHPSESSID Issue

2007-10-04 Thread Randal Rust
I have a site where the ID keeps getting appended to the URL. So I went in and added the following lines to my config.php file, which is included on every page. ini_set('session.user_only_cookies', TRUE); ini_set('session.use_trans_sid', FALSE); The ID still shows when I first visit the page. If