If i am on a shared hosting and i want to change my session time out how can I do this ?
thanks
session time issue
Moderator: General Moderators
Ask your hoster wether they let customers change php settings e.g. via .htaccess.
--
Take a look at http://de2.php.net/session
If the parameters you want to change are marked as PHP_INI_ALL you can use ini_set() to change the values for the duration of this php instance, i.e. you have to set these values before each session_start()
--
Take a look at http://de2.php.net/session
If the parameters you want to change are marked as PHP_INI_ALL you can use ini_set() to change the values for the duration of this php instance, i.e. you have to set these values before each session_start()