You can't set a login session to "never" timeout, but you can set how long before your session time out. This can't be set in Sendy itself, but you can add a line somewhere (at the top is fine) in the .htaccess file:
php_value session.cookie_lifetime 3600
The variable you need to change is 3600. This number is in seconds. For example, if you want your session to expire only after 1 week, the number will be 604800.
Comments
Hi Britt,
You can't set a login session to "never" timeout, but you can set how long before your session time out. This can't be set in Sendy itself, but you can add a line somewhere (at the top is fine) in the
.htaccess
file:php_value session.cookie_lifetime 3600
The variable you need to change is
3600
. This number is in seconds. For example, if you want your session to expire only after 1 week, the number will be604800
.Hope this helps.
Ben