Post by deshoon1 » Sat Dec 07, 2019 2:44 am

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

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by xxvirusxx » Sat Dec 07, 2019 6:11 am

Maybe wrong front config

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by deshoon1 » Sat Dec 07, 2019 6:23 am

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.

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by xxvirusxx » Sat Dec 07, 2019 6:37 am

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?

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by deshoon1 » Sat Dec 07, 2019 6:41 am

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

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by xxvirusxx » Sat Dec 07, 2019 6:47 am

Post config's data without database password...

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by deshoon1 » Sat Dec 07, 2019 7:21 am

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/');
Last edited by deshoon1 on Sat Dec 07, 2019 12:40 pm, edited 2 times in total.

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by letxobnav » Sat Dec 07, 2019 11:03 am

instead of assuming what it could be, just check your error logs.

Crystal Light Centrum Taiwan
Extensions: MailQueue | SUKHR | VBoces

“Data security is paramount at [...], and we are committed to protecting the privacy of anyone who is associated with our [...]. We’ve made a lot of improvements and will continue to make them.”
When you know your life savings are gone.


User avatar
Expert Member

Posts

Joined
Fri Aug 18, 2017 4:35 pm
Location - Taiwan

Post by deshoon1 » Sat Dec 07, 2019 11:21 am

thanks for taking the time to type that

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by letxobnav » Sat Dec 07, 2019 11:34 am

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.

Crystal Light Centrum Taiwan
Extensions: MailQueue | SUKHR | VBoces

“Data security is paramount at [...], and we are committed to protecting the privacy of anyone who is associated with our [...]. We’ve made a lot of improvements and will continue to make them.”
When you know your life savings are gone.


User avatar
Expert Member

Posts

Joined
Fri Aug 18, 2017 4:35 pm
Location - Taiwan

Post by deshoon1 » Sat Dec 07, 2019 11:55 am

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.

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by xxvirusxx » Sat Dec 07, 2019 2:58 pm

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_');

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by deshoon1 » Sat Dec 07, 2019 9:12 pm

A MILLION THANKS! I will change it.

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by xxvirusxx » Sat Dec 07, 2019 10:00 pm

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?

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by deshoon1 » Sat Dec 07, 2019 10:10 pm

I was interested in the google, do you think its not worth the bother? Maybe I should keep it at 2.0.3.2 ...

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by deshoon1 » Sat Dec 07, 2019 10:11 pm

If its that bad maybe I will leave it.. i wanted the google but its not critical

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by xxvirusxx » Sat Dec 07, 2019 10:19 pm

I don't know.. I don't care about google :laugh:

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...

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by deshoon1 » Sun Dec 08, 2019 2:30 am

:laugh: :laugh: 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!!

User avatar
New member

Posts

Joined
Wed Mar 13, 2013 9:40 am

Post by xxvirusxx » Sun Dec 08, 2019 3:10 am

I have sent you a PM.

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România
Who is online

Users browsing this forum: No registered users and 10 guests