Page 1 of 1

error 500

Posted: Thu 7. Apr 2022, 19:19
by PuntonetSvb
I am upgrading all my websites to php 8.1, and sometimes I get the 500 error, due to php incompatibilities.
How can I enable errors to be displayed, instead of error 500?

Re: error 500

Posted: Thu 7. Apr 2022, 19:43
by 24unix
Just look in ~/logs/error.log

Re: error 500

Posted: Fri 8. Apr 2022, 09:14
by Alexander
These logs can also be viewed within the KeyHelp UI.

Just go to "KeyHelp User Area" -> "Domains" -> "View web server logs".

Also you just can enable error output in your PHP scripts:

Code: Select all

ini_set("display_errors", true);
ini_set("display_startup_errors", true);
ini_set("error_reporting", E_ALL);