No, the page I saw was at http://www.anthonyjhall.co.uk/, which is a photography and graphic imagery site.
But, I did try both lower case and upper case on the 'C' 'c'.
Now, you mentioned that you changed the permissions on the configure.php files................did you make the other changes to reflect the path of your store?
Since it's in a folder called Catalog, then find these lines in Catalog/includes/configure.php (if they don't match these settings, you should change them)
Code:
define('HTTP_SERVER', 'http://www.anthonyjhall.co.uk');
define('HTTPS_SERVER', 'https://www.anthonyjhall.co.uk');
define('DIR_WS_CATALOG', '/Catalog/');
define('DIR_WS_HTTPS_CATALOG', '/Catalog/');
Then next 2, change the x's to your server path if not already correct:
define('DIR_FS_CATALOG', '/xxxxx/xxxxxxxx/public_html/Catalog/');
define('DIR_FS_SQL_CACHE', '/xxxxx/xxxxxxxx/public_html/Catalog/cache');
Then, in Catalog/YourAdmin(what ever you named it)/includes/configure.php:
Code:
define('HTTP_SERVER', 'http://www.anthonyjhall.co.uk');
define('HTTPS_SERVER', 'https://www.anthonyjhall.co.uk');
define('HTTP_CATALOG_SERVER', 'http://www.anthonyjhall.co.uk');
define('HTTPS_CATALOG_SERVER', 'https://www.anthonyjhall.co.uk');
The next 2, change "YourAdmin" to what ever you renamed your admin folder to:
define('DIR_WS_ADMIN', '/Catalog/YourAdmin/');
define('DIR_WS_CATALOG', '/Catalog/');
define('DIR_WS_HTTPS_ADMIN', '/Catalog/YourAdmin/');
define('DIR_WS_HTTPS_CATALOG', '/Catalog/');
Then next 3, change the x's to your server path if not already correct:
define('DIR_FS_ADMIN', '/xxxxx/xxxxxxx/public_html/Catalog/YourAdmin/');
define('DIR_FS_CATALOG', '/xxxxxx/xxxxx/public_html/Catalog/');
define('DIR_FS_SQL_CACHE', '/xxxxxx/xxxxx/public_html/Catalog/cache');