localhostopencartmampinternal-server-erroropencart-3

Opencart 3.0.3.8: Internal Server Error Popup at Checkout. Error Log is empty


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:

Internal Server Error popup at Checkout 1st step. (Opencart)

and Inspect Tools -> console shows this information:

enter image description here

"[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

enter image description here

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

enter image description here

enter image description here

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.


Solution

  • 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);