I have searched this forum but can't find any post that helps. Also, I don't understand the documentation at php.net.
My goal is to set the session_lifetime to 0, so it expires first when the browser is closed. Now it expires after about 10 minutes.
I have used the php Info to see the info on my server. But here I can see that the session.cookie_lifetime is allready set to Master Value 0. ???? Then why do it expire?
Someone recomended me to open the php.ini file so that I could change the settings myself, but I cant see this file in the directory (as shown in PHP Info), using FTP.
All of my pages start with:
<?
session_start();
header("Cache-control: private"); // IE 6 Fix.
?>