Posted by VGRs1
2014-06-12

Hi Tom
sorry to bother you again . I would like to help me in this :
I connect to my base and it goes grate but if I don't make a "movement" for a while the session close and I must reconnect. Is there a way to avoid it ? ,(I mean to leave session open?) .
Thank's again
Posted by Tom
2014-06-12

Try this. Open web/staff/index.php in a text editor and put this line on the top.
ini_set('session.gc_maxlifetime', 24*60*60);
It should be after <?php, so the result should look like this
<?php
ini_set('session.gc_maxlifetime', 24*60*60);
24*60*60 should extend your session to one day ( 24 hours x 60 minutes x 60 seconds )