My end goal is to upgrade from 1.5.6.1 to 2.0.3.1
What i've done so far.
I tried doing the basic upgrade by copying it over the install.
I encountered lots of problems given that I'm using a third party theme. as well as lots of modules
So what I did was is I replicated the site to a subdirectory on my server, and pointed it a 2nd mysql database as to not affect my current running site.
The directory migration worked on the admin side. I however cannot access the index page.
The backup site that im working with is in the subdirectory /tester
Here is the error I get on the /tester/index.php
here is my /tester/config.php file with mysql details removedWarning: require_once(/home/hostinguser/public_html/tester/tester/system/startup.php): failed to open stream: No such file or directory in /home/hostinguser/public_html/tester/index.php on line 23
Fatal error: require_once(): Failed opening required '/home/hostinguser/public_html/tester/tester/system/startup.php' (include_path='.:/opt/alt/php54/usr/share/pear:/opt/alt/php54/usr/share/php') in /home/hostinguser/public_html/tester/index.php on line 23
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://www.website.com/tester/');
// HTTPS
define('HTTPS_SERVER', 'http://www.website.com/tester/');
// DIR
define('DIR_APPLICATION', '/home/hostinguser/public_html/tester/catalog/');
define('DIR_SYSTEM', '/home/hostinguser/public_html/tester/tester/system/');
define('DIR_DATABASE', '/home/hostinguser/public_html/tester/system/database/');
define('DIR_LANGUAGE', '/home/hostinguser/public_html/tester/catalog/language/');
define('DIR_TEMPLATE', '/home/hostinguser/public_html/tester/catalog/view/theme/');
define('DIR_CONFIG', '/home/hostinguser/public_html/tester/system/config/');
define('DIR_IMAGE', '/home/hostinguser/public_html/tester/image/');
define('DIR_CACHE', '/home/hostinguser/public_html/tester/system/cache/');
define('DIR_DOWNLOAD', '/home/hostinguser/public_html/tester/download/');
define('DIR_LOGS', '/home/hostinguser/public_html/tester/system/logs/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', '*****');
define('DB_PASSWORD', '******');
define('DB_DATABASE', '*****');
define('DB_PREFIX', 'oc_');
?>
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://www.website.com/tester/admin/');
define('HTTP_CATALOG', 'http://www.website.com/tester/');
// HTTPS
define('HTTPS_SERVER', 'https://www.website.com/tester/admin/');
define('HTTPS_CATALOG', 'https://www.website.com/tester/');
// DIR
define('DIR_APPLICATION', '/home/hostinguser/public_html/tester/admin/');
define('DIR_SYSTEM', '/home/hostinguser/public_html/tester/system/');
define('DIR_DATABASE', '/home/hostinguser/public_html/tester/system/database/');
define('DIR_LANGUAGE', '/home/hostinguser/public_html/tester/admin/language/');
define('DIR_TEMPLATE', '/home/hostinguser/public_html/tester/admin/view/template/');
define('DIR_CONFIG', '/home/hostinguser/public_html/tester/system/config/');
define('DIR_IMAGE', '/home/hostinguser/public_html/tester/image/');
define('DIR_CACHE', '/home/hostinguser/public_html/tester/system/cache/');
define('DIR_DOWNLOAD', '/home/hostinguser/public_html/tester/download/');
define('DIR_LOGS', '/home/hostinguser/public_html/tester/system/logs/');
define('DIR_CATALOG', '/home/hostinguser/public_html/tester/catalog/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', '*****');
define('DB_PASSWORD', '*****');
define('DB_DATABASE', '*****');
define('DB_PREFIX', 'oc_');
?>
My plan was to replicate the site. Remove all VQmods, restore the default theme. then do the upgrade.
Any advice would be appreciated.
Thanks!