Howdy,
I know that version 1.6.6 is old but I am trying to get into CP of fully restored site/db to my localhost.
- Locally I can do a clean install no issues so server reqs are in place.
- When site is restored and upon login I can see that the session is created in ‘exp_sessions’ table but the screen just reloads with the session in appended to url “/index.php?S=384ea44a0a9d7f45135475bfbf0935a3e98269db”
- Different browsers, deleted cookies
- Deleted cache from ‘EE\sysadmin\cache\db_cache’
- I have adjusted the ‘config.php’ to the following:
<?php/
if ( ! defined('EXT')){
exit('Invalid file request');
}
$conf['app_version'] = "168";
$conf['license_number'] = "";
$conf['debug'] = "1";
$conf['install_lock'] = "1";
$conf['db_hostname'] = "localhost";
$conf['db_username'] = "test";
$conf['db_password'] = "pass";
$conf['db_name'] = "my_db";
$conf['db_type'] = "mysql";
$conf['db_prefix'] = "exp";
$conf['db_conntype'] = "0";
$conf['system_folder'] = "sysadmin";
$conf['cp_url'] = "http://localhost/EE/sysadmin/index.php";
$conf['doc_url'] = "http://expressionengine.com/docs/";
$conf['cookie_prefix'] = "";
$conf['is_system_on'] = "y";
$conf['allow_extensions'] = "n";
$conf['multiple_sites_enabled'] = "n";
$config['cookie_domain'] = "";
$config['cookie_path'] = "";
$config['cookie_prefix'] = "";
$config['admin_session_type'] = "c";
?>
Little rusty with EE 1.x so not sure if I missed a step, any help would be appreciated.