Introduction
This article aims to assist you with troubleshooting a white screen on a WordPress site.
Procedure
- Check the site's PHP error log. The PHP error log will often contain useful information that will assist you in resolving the issue.
- If the PHP error log does not provide enough information, you can enable debug logging in WordPress by adding or modifying the
WP_DEBUG
andWP_DEBUG_LOG
lines within your wp-config.php file and setting their values to true.define( 'WP_DEBUG', true);
define( 'WP_DEBUG_LOG', true ); - Disable the site's plugins.
- Change the WordPress theme.
- Clearing your browser cache.
- Clear the WordPress cache.
Additional resources
Where are the PHP error logs located?
How to Clear your Browser's Cache
(HTTP ERROR 500) PHP website blank/showing a white page or Internal Server Error
Comments
0 comments
Article is closed for comments.