Page 1 of 1
upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 2:44 am
by deshoon1
hi, i am attempting to upgrade to the latest version 3.0.3.2 from 2.3.0.2 for the past few days and I completed the steps provided on
viewtopic.php?t=186712 and I am still running into an issue. I created a test domain projectenhancedfitness.com/test1 to complete to process using the guideline provided in the forum link and now the page shows "http error 500 unable to handle this request" the admin page, projectenhancedfitness.com/test1/admin still works. Any further information would be much appreciated.
D.
projectenhancedfitness.com
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 6:11 am
by xxvirusxx
Maybe wrong front config
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 6:23 am
by deshoon1
hey, thanks
i copied the config.php and admin/config.php from the old version2.0.3.2 to the new version 3.0.3.2, is there another config. ? I have zero clue.
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 6:37 am
by xxvirusxx
deshoon1 wrote: ↑Sat Dec 07, 2019 6:23 am
i copied the config.php and admin/config.php from the old version2.0.3.2 to the new version 3.0.3.2
Why?
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 6:41 am
by deshoon1

that's what i thought I was supposed to do according to the instrucitons in the post unless i totally misunderstood.

Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 6:47 am
by xxvirusxx
Post config's data without database password...
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 7:21 am
by deshoon1
config
<?php
// HTTP
define('HTTP_SERVER', 'http://projectenhancedfitness.com/admin/');
define('HTTP_CATALOG', 'http://projectenhancedfitness.com/');
// HTTPS
define('HTTPS_SERVER', 'https:///admin/');
define('HTTPS_CATALOG', 'https://.com/');
// DIR
define('DIR_APPLICATION', '/home/deshoon/public_html/admin/');
define('DIR_SYSTEM', '/home/deshoon/public_html/system/');
define('DIR_DATABASE', '/home/deshoon/public_html/system/database/');
define('DIR_LANGUAGE', '/home/deshoon/public_html/admin/language/');
define('DIR_TEMPLATE', '/home/deshoon/public_html/admin/view/template/');
define('DIR_CONFIG', '/home/deshoon/public_html/system/config/');
define('DIR_IMAGE', '/home/deshoon/public_html/image/');
define('DIR_CACHE', '/home/deshoon/public_html/system/storage/cache/');
define('DIR_DOWNLOAD', '/home/deshoon/public_htmlsystem/storage/download/');
define('DIR_MODIFICATION', '/home/deshoon/public_html/system/storage/modification/');
define('DIR_UPLOAD', '/home/deshoon/public_html/system/storage/upload/');
define('DIR_LOGS', '/home/deshoon/public_html/system/storage/logs/');
define('DIR_CATALOG', '/home/deshoon/public_html/catalog/');
// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'deshoon_oc2');
define('DB_PASSWORD', 'xxxxx);
define('DB_DATABASE', 'deshoon_oc2');
define('DB_PORT', '3306');
define('DB_PREFIX', 'oc_');
?>
and
admin/config
<?php
// HTTP
define('HTTP_SERVER', 'https://projectenhancedfitness.com/test1/admin/');
define('HTTP_CATALOG', 'https://projectenhancedfitness.com/test1/');
// HTTPS
define('HTTPS_SERVER', 'https://projectenhancedfitness.com/test1/admin/');
define('HTTPS_CATALOG', 'https://projectenhancedfitness.com/test1/');
// DIR
define('DIR_APPLICATION', '/home/deshoon/public_html/test1/admin/');
define('DIR_SYSTEM', '/home/deshoon/public_html/test1/system/');
define('DIR_IMAGE', '/home/deshoon/public_html/test1/image/');
define('DIR_STORAGE', '/home/deshoon/ocartdata3/storage/');
define('DIR_CATALOG', '/home/deshoon/public_html/test1/catalog/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/template/');
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
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'deshoon_oc3test');
define('DB_PASSWORD', ');
define('DB_DATABASE', 'deshoon_oc3test');
define('DB_PORT', '3306');
define('DB_PREFIX', 'ocpy_');
// OpenCart API
define('OPENCART_SERVER', 'https://www.opencart.com/');
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 11:03 am
by letxobnav
instead of assuming what it could be, just check your error logs.
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 11:21 am
by deshoon1
thanks for taking the time to type that
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 11:34 am
by letxobnav
yes, silly notion but it is almost as if the error logs were intended for the purpose of finding out why errors occur.
Thanks for taking the time to check those before you posted your "what could it be" quiz.
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 11:55 am
by deshoon1
why bother responding if you are not going to be useful. I did check the logs and attempted to resolve by following the instructions in the link I posted. like i said before keyboard warrior thanks for taking the time to respond.
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 2:58 pm
by xxvirusxx
Main config (not admin config) should be like this...
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'https://projectenhancedfitness.com/test1/');
// HTTPS
define('HTTPS_SERVER', 'https://projectenhancedfitness.com/test1/');
// DIR
define('DIR_APPLICATION', '/home/deshoon/public_html/test1/catalog/');
define('DIR_SYSTEM', '/home/deshoon/public_html/test1/system/');
define('DIR_IMAGE', '/home/deshoon/public_html/test1/image/');
define('DIR_STORAGE', '/home/deshoon/ocartdata3/storage/');
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
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'deshoon_oc3test');
define('DB_PASSWORD', '');
define('DB_DATABASE', 'deshoon_oc3test');
define('DB_PORT', '3306');
define('DB_PREFIX', 'oc_');
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 9:12 pm
by deshoon1
A MILLION THANKS! I will change it.
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 10:00 pm
by xxvirusxx
Why you want to upgrade to 3.0.3.2?
For what?
For Google Merchant from 3.03.2?
For slow speed?
For more Bugs?
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 10:10 pm
by deshoon1
I was interested in the google, do you think its not worth the bother? Maybe I should keep it at 2.0.3.2 ...
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 10:11 pm
by deshoon1
If its that bad maybe I will leave it.. i wanted the google but its not critical
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sat Dec 07, 2019 10:19 pm
by xxvirusxx
I don't know.. I don't care about google
Before you change to primary you should test everything f to see if work the same on 3.0.3.2.
And better ask a friend if you have and know to upgrade for you.
Or someone as paid service...
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sun Dec 08, 2019 2:30 am
by deshoon1

I'm probably gonna leave it, I asked my hosting provider they charged 80.00 but couldn't guarantee it would work then i would be out of the money if it didn't ... I will never understand that, so I was trying to make it work but maybe its not that big of a deal after all, LOL. Thanks a lot though for your input!! I do appreciate it!!
Re: upgrade from 2.0.3.2 to 3.0.3.2
Posted: Sun Dec 08, 2019 3:10 am
by xxvirusxx
I have sent you a PM.