How to extend a session in PHP using .htaccess?
I used this code below:
php_value session.cookie_lifetime 28800
php_value session.cache_expire 28800
php_value session.gc_maxlifetime 28800
But I believe it did not work, so, how can I check if the session I started has this expiration time?
What would be the default cookie expiration time?
I believe that the * .cache_expire code snippet is not about the session, can I remove it from the code?