I’m using ExpressionEngine v2.3.1 and php5.3.6
I’ve copied the site to a local development site that I’ve setup as
http://loc.airshipventures.com/
(only on my local machine)
The front end is working fine.
However when I try to go to the control panel login, I get
“Firefox has detected that the server is redirecting the request for this address in a way that will never complete.”
When I look at the page in firebug, it’s endlessly redirecting to itself:
http://loc.airshipventures.com/system/index.php?S=0&D=cp&C=homepage
with a 302 Found redirect
I tried adding the following in my config.php
$config['cookie_domain'] = ".airshipventures.com";
$config['cookie_prefix'] = "airshipventures";
$config['cookie_path'] = "";
$config['admin_session_type'] = "c";
$config['user_session_type'] = "c";
$config['require_ip_for_login'] = "n";
$config['require_ip_for_posting'] = "n";
$config['secure_forms'] = "n";with no result.
It seems like it’s not picking up the cookies or something.
In my config I also have
$assign_to_config['airship_webroot'] = '/home/ben/sitesperm/airship/site/pub/';which is the correct path to my local site.
Any ideas on how I can get the login page to work?
Thanks