After logging in to the admin, If i'm idle for like a minute, I get logged out. So if I spend a minute entering a description for a product, and then hit save, I'm sent back to the login.
I can't send a client to the admin area to enter their own products if they have to keep saving even if they are not finished entering product details.
How can I make this not expire so fast?
I can't send a client to the admin area to enter their own products if they have to keep saving even if they are not finished entering product details.
How can I make this not expire so fast?
I think it just uses normal browser session
try edit system/library/session.php
FIND:
@ini_set('session.use_trans_sid', '0');
AFTER ADD:
@ini_set('session.gc_maxlifetime',1440);
that should last a day.
mroe info here:
http://www.webmasterworld.com/forum88/4186.htm
try edit system/library/session.php
FIND:
@ini_set('session.use_trans_sid', '0');
AFTER ADD:
@ini_set('session.gc_maxlifetime',1440);
that should last a day.
mroe info here:
http://www.webmasterworld.com/forum88/4186.htm
The fix is to create your own session directory
open and edit /cart/system/library/session.php
add just before the
session_set_cookie_params(0, '/');
$garbage_timeout = 3600; // 3600 seconds = 60 minutes = 1 hour
ini_set('session.gc_maxlifetime', $garbage_timeout);
ini_set('session.save_path','/path/to/your/cart/create a directory/my_sessions');
also change the new my_sessions directory to 777
open and edit /cart/system/library/session.php
add just before the
session_set_cookie_params(0, '/');
$garbage_timeout = 3600; // 3600 seconds = 60 minutes = 1 hour
ini_set('session.gc_maxlifetime', $garbage_timeout);
ini_set('session.save_path','/path/to/your/cart/create a directory/my_sessions');
also change the new my_sessions directory to 777
I also most ended up killing my pc because I typed a long paragraph and when I click 'save' it directs me to the login page without saving... but after following your steps it finally works... THANKS MAN!digbeeorg101 wrote:The fix is to create your own session directory
open and edit /cart/system/library/session.php
add just before the
session_set_cookie_params(0, '/');
$garbage_timeout = 3600; // 3600 seconds = 60 minutes = 1 hour
ini_set('session.gc_maxlifetime', $garbage_timeout);
ini_set('session.save_path','/path/to/your/cart/create a directory/my_sessions');
also change the new my_sessions directory to 777
Yep worked for me as well and looking over the link Qphoria posted in his post, it mentions doing it this way if you are on a shared server as well in that article...so TY to you both!iori57 wrote:I also most ended up killing my pc because I typed a long paragraph and when I click 'save' it directs me to the login page without saving... but after following your steps it finally works... THANKS MAN!digbeeorg101 wrote:The fix is to create your own session directory
open and edit /cart/system/library/session.php
add just before the
session_set_cookie_params(0, '/');
$garbage_timeout = 3600; // 3600 seconds = 60 minutes = 1 hour
ini_set('session.gc_maxlifetime', $garbage_timeout);
ini_set('session.save_path','/path/to/your/cart/create a directory/my_sessions');
also change the new my_sessions directory to 777

Who is online
Users browsing this forum: No registered users and 152 guests