I’m trying to create a mirror setup of my live site on my localhost using MAMP.
What I’ve Done
—Copied my Image, Theme and System directories from my live site into my localhost >MAMP > htdocs directory
—Imported my live database into MAMP via phyMyAdmin.
—Made the following changes to the localhost version of config.php:
$conf['cp_url'] = "//localhost:8888/my_directory/my_system_folder/";
$conf['db_name'] = "my database name";
$conf['db_hostname'] = "left empty";
$conf['db_username'] = "left empty";
$conf['db_password'] = "left empty";
Problem
—When I point the browser to //localhost:8888/my_directory, the index page is not coming up; instead I’m seeing the list of what’s in the Parent Directory.
—When I click on //localhost:8888/my_directory/my_system_folder I get “Database Error: Unable to select your database”
Any suggestions as to where I’m going off track?
Thanks.