Page 1 of 1

Fresh install of 4.0.10 - Can't open the system -> settings

Posted: Wed Aug 24, 2022 7:07 pm
by naturesfinest
PHP version 8.0
Opencart 4.0.1.0
Browser: MS Edge Version 104.0.1293.63
New db and clean folder for deployment

I can login to the admin section and see the menu, all other menu options work aside from getting to the general settings page, this results in a blank page.
Nothing is written to the error log
Nothing appears on the console using developer tools in the web browser

Any suggestions?

Re: Fresh install of 4.0.10 - Can't open the system -> settings

Posted: Wed Aug 24, 2022 9:45 pm
by Johnathan
It's probably an internal server error. Check out your server's PHP error log for the relevant error. Or if you want to output it, you can try using this edit:

Code: Select all

IN:
/admin/index.php

AFTER:
<?php

ADD:
error_reporting(E_ALL);
ini_set('display_errors', 'on');

That should output the real error causing the page not to load.