Reputation: 353
first off all - Error Log is empty. So my problem is that at 1st Step in Checkout page when I click "CONTINUE" I get Internal Server Error Popup:
and Inspect Tools -> console shows this information:
"[Error] Failed to load resource: the server responded with a status of 500 (Internal Server Error)"
http://localhost/index.php?route=checkout/checkout/country&country_id=123
Same thing with admin panel but this Popup only happens when clicking "Dashboard" on left sidebar for like 5 times in a row after each time it loads dashboard page. Discovered this error randomly... After getting this error in this way then it happens everytime I try to click "Dashboard" and it loads. Same Internal Server Error popup but console shows different Error:
"[Error] Failed to load resource: the server responded with a status of 500 (Internal Server Error)"
http://localhost/admin/index.php?route=extension/dashboard/map/map&user_token=fHdKojJ8E1oUT8yLpFgksxSAEaPwEhrP
My server and tools, etc:
P.S - when I restart Apache server on Mamp the Errors are gone until I click Dashboard on admin panel for too many times. P.S.S - no extensions installed. Completely fresh Opencart installation, only Journaled Theme installed.
Upvotes: 0
Views: 1499
Reputation:
Go to the Directory and open index.php file add the below code in the file and save it will shows you the error instead of Internal Server Error Popup
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Upvotes: 0