PHP errors are not logged by our web servers by default.
To view PHP error logs, you need to enable logging manually within your code.
You can do this by adding the following lines to your .htaccess file:
php_flag log_errors on
php_value error_log /var/www/domain.dk/phperrors.log
You can now download the phperrors.log file with an File Manager and review it if necessary.
If nothing is written in the error log, it is usually either because no PHP error occurs, the error handler has been changed in the source code, or an eventual error problem lies somewhere else.
You can test if the log works by making a call to e.g. trigger_error().
SAFE AND SECURE PAYMENT