4images Forum & Community

4images Help / Hilfe => FAQ, Tips => Topic started by: V@no on March 24, 2005, 06:06:30 AM

Title: Two sessionid in URLs
Post by: V@no on March 24, 2005, 06:06:30 AM
On some systems sessionid= being added twice to URLs.
To fix that add in .htaccess file this line:
Code: [Select]
php_flag session.use_trans_sid off

Another options are to change it directly in your php.ini (if you have access) or you can try to set it with the following code in config.php:
Code: [Select]
ini_set("session.use_trans_sid", "0");