opencart admin problem – netfirms hosting - this is common problem in netfirms hosting — when you login opencart admin with correct user name and password. but you cant see the admin panel dashboard – its bcoz of the session problem.
Try changing the session path to a folder on your server instead using a php.ini file.
go to system – library – session.php
and use this code
$garbage_timeout = 3600;
ini_set(‘session.gc_maxlifetime’, $garbage_timeout);
ini_set(‘session.save_path’,'ur server path/sessions’);
session_set_cookie_params(0, ‘/’);
session_start();
use your server path
need more help?