This topic is locked

Expired session

12/29/2009 10:25:14 AM
PHPRunner General questions
T
Tempus_Erus author

Hi,
what is the default expiry time onec logged into an application and how do you change this?
It's probably basic to many but still learning my way with PHP.
Thanks

N
nix386 12/29/2009



Hi,
what is the default expiry time onec logged into an application and how do you change this?
It's probably basic to many but still learning my way with PHP.
Thanks


It's stored in the php.ini file on the web server and you may or may not have access to this file. I had similar problem and in the end used a meta refresh in the page header on the list pages to get around the issue which is not a perfect solution but tolerable all the same.

<meta http-equiv="refresh" content="5" />

refreshes the page every 300 secs (5min) Can add this line to the source list or templates..

or

Link

More

<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=46517&image=1&table=forumreplies' class='bbc_emoticon' alt=';)' />

T
Tempus_Erus author 12/30/2009



It's stored in the php.ini file on the web server and you may or may not have access to this file. I had similar problem and in the end used a meta refresh in the page header on the list pages to get around the issue which is not a perfect solution but tolerable all the same.
refreshes the page every 300 secs (5min) Can add this line to the source list or templates..

or

Link

More

<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=46544&image=1&table=forumreplies' class='bbc_emoticon' alt=';)' />


Nix386,
Thanks - some good points. Much apreciated.