When WordPress shows a blank page, a 500 error, or “critical error”, the fastest way to understand the cause is to enable the WordPress debug log for a short time and capture the error message.
Important: do not keep debug mode enabled permanently on a production site. Enable it only while you collect the log, then disable it.
httpdocs).wp-config.php.Add these lines above the line that says /* That's all, stop editing! */:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors', 0);
Save the file.
/wp-content/.debug.log (or open it to copy the latest lines).Set debug mode back to false:
define('WP_DEBUG', false);
You can keep the other lines or remove them — the key is to keep debugging disabled during normal operation.
If you also want to check web server / PHP logs, open your domain in Plesk and look for Logs / Log Browser.