I enabled the errors in my wp-config file:
define('WP_DEBUG', true);
But this not work, Wordpress continues showing me a white screen, a blank screen with no information.
How can I solve this?
I enabled the errors in my wp-config file:
define('WP_DEBUG', true);
But this not work, Wordpress continues showing me a white screen, a blank screen with no information.
How can I solve this?
Add these two lines below the
then delete them when you don't need them any more.
The below code, inserted in your wp-config.php file, will log all errors, notices, and warnings to a file called debug.log in the wp-content directory. It will also hide the errors so they do not interrupt page generation.
this code you must have to insert BEFORE /* That's all, stop editing! Happy blogging. */ in the wp-config.php file.
sorce: https://codex.wordpress.org/Debugging_in_WordPress
You can write this into your .htaccess file.
Please change the error_log directory.