We are using Opencart 3.0.3.1 for our website www.gallowayfudge.com.
I have installed xampp and then copied our live website into a folder (GFC3031) in htdocs. I have also imported our database and modified the two config.php files to reflect the local install.
This is the config.php file in root folder. I have deliberately not shown the DB section.
<?php
// HTTP
define('HTTP_SERVER', 'http://localhost/GFC3031/');
// HTTPS
define('HTTPS_SERVER', 'https://localhost/GFC3031/');
// DIR
define('DIR_APPLICATION', 'F:/xampp/htdocs/GFC3031/catalog/');
define('DIR_SYSTEM', 'F:/xampp/htdocs/GFC3031/system/');
define('DIR_IMAGE', 'F:/xampp/htdocs/GFC3031/image/');
define('DIR_STORAGE', 'F:/xampp/htdocs/GFC3031/GFC3031storage/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/theme/');
define('DIR_CONFIG', DIR_SYSTEM . 'config/');
define('DIR_CACHE', DIR_STORAGE . 'cache/');
define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
define('DIR_LOGS', DIR_STORAGE . 'logs/');
define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
define('DIR_SESSION', DIR_STORAGE . 'session/');
define('DIR_UPLOAD', DIR_STORAGE . 'upload/');
// DB
at the moment I have two distinct problems.
Problem 1 is that although the dashboard is shown when I login as Admin, it is "wonky" and difficult to use, See attached images.
Problem 2 is that when I try to load our website's homepage using http://localhost/GCF3031/ it generates a 404 error and nothing else.
I would be grateful if someone could explain to me why the dashboard might be incorrectly displayed and where I should be looking for whatever is resulting in the 404 error.
Thanks in advance, Ian

