When trying to access the OpenCart admin dashboard, the page does not load or shows a blank screen. A corrupted modification file can cause this, incorrect file permissions, a broken extension, or a PHP error.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
config.php
in the/admin/
directory.define('DEBUG', false);
Change it to:
define('DEBUG', true);
error.log
in/system/storage/logs/
or the server error log./system/storage/cache/
and/system/storage/modification/
..htaccess
to.htaccess_old
and try loading the admin panel..htaccess
from OpenCart settings./admin/
,/system/storage/cache/
, and/system/storage/modification/
have correct permissions (0755
or0777
).UPDATE oc_extension SET status = '0' WHERE type = 'module';
/admin/
folder from a fresh OpenCart installation.Comments:
A blank admin page or a 500 error can make site management impossible. Checking logs, clearing cache, and disabling extensions help resolve the issue quickly. 🚀