This question may be related to a resolved thread.
Hello I have an issue with logging in in from my clients office, from any computer including my laptop.
Everything works find when I try to login from my office, and my laptop.
The issue is that it always gets back to the login form page after I try to login.
I found few posts where it was suggested to force cokies and etc , that’s what I did
1. Cockies
config.php
$config['admin_session_type'] = "c";
$config['cookie_domain'] = ".mydomain.com";controllers/cp/login.php
$return_path = $base.AMP.'C=homepage';2. Session ID
$config['admin_session_type'] = "s";
$config['cookie_domain'] = ".alfareeqmaintenance.com";controllers/cp/login.php
$s = ($this->config->item('admin_session_type') != 'c') ? $this->session->userdata('session_id') : 0;
$return_path = SELF.'?S='.$s.'&D=cp'.AMP.'C=homepage';Still no luck. Need really urgent help.