I have a live site on 1.6.8 that works great. I’m getting ready to do some updating to the site, so I downloaded all the files, created a staging. subdomain, then uploaded a copy of the files to that subdomain. Both the live and staging sites will look at the current database. All that is working - I can browse on both sites and all the resources loaded for pages are coming from the correct site.
I added a bunch of config overrides to config.php so that the staging site looks to /staging/abcdef for templates rather than /www/abcdef.
However, I am ready to begin editing templates and the edits won’t appear. The staging site is still looking to the /www/abcdef templates.
Here are all my config values:
$conf['app_version'] = "168";
$conf['license_number'] = "abcdef";
$conf['debug'] = "1";
$conf['install_lock'] = "1";
$conf['db_hostname'] = "localhost";
$conf['db_username'] = "abcdef";
$conf['db_password'] = "abcdef";
$conf['db_name'] = "abcdef";
$conf['db_type'] = "mysql";
$conf['db_prefix'] = "exp";
$conf['db_conntype'] = "0";
$conf['system_folder'] = "abcdef";
$conf['doc_url'] = "http://expressionengine.com/docs/";
$conf['cookie_prefix'] = "";
$conf['is_system_on'] = "y";
$conf['allow_extensions'] = "y";
$conf['multiple_sites_enabled'] = "n";
$conf['cp_url'] = "http://staging.abcdef.com/admin.php";
$conf['enable_online_user_tracking'] = "n";
$conf['enable_hit_tracking'] = "n";
$conf['enable_entry_view_tracking'] = "y";
$conf['dynamic_tracking_disabling'] = "";
$conf['user_module_key_expiration'] = "30";
$conf['hidden_template_indicator'] = "_";
$conf['user_email_is_username'] = "y";
$conf['user_screen_name_override'] = "cf_member_fname|cf_member_lname";
$conf['user_category_group'] = "2";
$conf['site_index'] = '';
$conf['site_url'] = 'http://staging.abcdef.org/';
$conf['theme_folder_url'] = 'http://staging.abcdef.org/themes/';
$conf['theme_folder_path'] = '/Users/webadmin/Sites/staging/themes/';
$conf['tmpl_file_basepath'] = '/Users/webadmin/Sites/staging/abcdef/templates/';Any place I should be looking that I am not to get the staging site to reference this?