Moved C5 from Shared host into XAMP for development, doesn't work

Permalink
I moved Concrete to my local computer to develop more pages/themes for the site.

I moved the database, the files exactly as they are on the Shared Host.

Now, Concrete seems to work. I installed it on /concrete/ folder, that's where the index.php for Concrete lies.

However, Concrete is sending me on a LOOP to /concrete/concrete folder (which is the installation /concrete/)

http://192.168.3.145/concrete/

loops into

http://192.168.3.145/concrete/concrete/...

I changed the file:

local/concrete/config/site.php

to reflect the DB info/URL however this loop happens. Any way to fix it?

Slacker
 
Slacker replied on at Permalink Reply
Slacker
Checking into the access and error logs its not apache or .htaccess related.

index.php does an include to dispatcher.php

which seems to do the redir to concrete/
frz replied on at Permalink Reply
frz
what does your site.php variables actually look like? (not the password stuff)
Slacker replied on at Permalink Reply
Slacker
<?php 
define('DB_SERVER', 'localhost');
define('DB_USERNAME', 'concrete');
define('DB_PASSWORD', 'xxx');
define('DB_DATABASE', 'concrete');
define('BASE_URL', 'http://192.168.3.145');
define('DIR_REL', '');
?>


That's site.php


EDIT: for whatever reason concrete/startup folder was empty.

After reuploading the contents of that folder now the checks by dispatcher.php are executed and C5 works =D