my themes folder looks as it should, with the exception of the cp_themes folder which was moved into the system folder.
When I enter the url http://www.mysite.com/**control_panel_access**/ it redirects to
http://www.mysite.com/**control_panel_access**/index.php and a blank screen.
Had no luck changing the config.php file.
And yes, I have .htaccess
Here’s my config.php file, with *** replacing certain values for security:
<?php
if ( ! defined('EXT')){
exit('Invalid file request');
}
$conf['app_version'] = "168";
$conf['license_number'] = "****-4371-8909-****";
$conf['debug'] = "1";
$conf['install_lock'] = "1";
$conf['db_hostname'] = "mysql123.hosting.********.net";
$conf['db_username'] = "***";
$conf['db_password'] = "********";
$conf['db_name'] = "***";
$conf['db_type'] = "mysql";
$conf['db_prefix'] = "exp";
$conf['db_conntype'] = "0";
$conf['system_folder'] = "system";
$conf['cp_url'] = "http://firenews.net/***-******/index.php";
$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['tag_module_parse'] = "linebreak";
$conf['tag_module_convert_case'] = "y";
$conf['tag_module_enable_tag_form'] = "y";
?>
Should the ‘system_folder’ value match the ‘cp_url’ value?