That looks totally goobered up ...
Each line that starts with: define
needs to be on its own line
Each line that starts with: //
needs to be on its own line
This is messed up with things not on separate lines and the wrong settings:
PHP Code:
define('HTTP_SERVER', 'http://www.williamandjacks.co.uk/Shop');
// Secure webserver: eg, https://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.williamandjacks.co.uk/Shop'); // eg, https://localhost
define('HTTP_CATALOG_SERVER', 'http://www.williamandjacks.co.uk/Shop');
define('HTTPS_CATALOG_SERVER', 'https://www.williamandjacks.co.uk/Shop');
Should be:
PHP Code:
define('HTTP_SERVER', 'http://www.williamandjacks.co.uk');
define('HTTPS_SERVER', 'https://www.williamandjacks.co.uk');
define('HTTP_CATALOG_SERVER', 'http://www.williamandjacks.co.uk');
define('HTTPS_CATALOG_SERVER', 'https://www.williamandjacks.co.uk');
This section here is a problem:
PHP Code:
define('DIR_WS_ADMIN', '/admin/');
define('DIR_WS_CATALOG', '//');
define('DIR_WS_HTTPS_ADMIN', '/admin/');
define('DIR_WS_HTTPS_CATALOG', '//');
Should be:
PHP Code:
define('DIR_WS_ADMIN', '/Shop/admin/');
define('DIR_WS_CATALOG', '/Shop/');
define('DIR_WS_HTTPS_ADMIN', '/Shop/admin/');
define('DIR_WS_HTTPS_CATALOG', '/Shop/');
NOTE: calling your directory Shop vs shop is not a good idea on the internet ... no one will remember to use Shop vs shop ...
You should change that at some point
This looks like a very old configure.php file from a very old version of Zen Cart ...
You will want to look at the new version of the
/includes/dist-configure.php
when you upgrade or if you already have ...
Note: your catalog should also probably be cleaned up as well for the file:
/includes/configure.php
with similar changes ...