It was all working normally, suddenly some products are with the whole screen white, simply nothing appears on the page.
I've already disabled most plugins, rename images, change url and nothing, continue the same problem.
It was all working normally, suddenly some products are with the whole screen white, simply nothing appears on the page.
I've already disabled most plugins, rename images, change url and nothing, continue the same problem.
Share Improve this question asked Oct 25, 2018 at 15:44 sNniffersNniffer 1011 bronze badge1 Answer
Reset to default 0Note
You should perform the following steps on the staging site. You can create a staging site by cloning the current site to another domain or a sub-domain.
Implement the working solution to the live site.
Try the following points one by one and check if it fixed the issue. If one step didn't work, then move to the next step.
- Increase Memory Limits
- Add
define('WP_MEMORY_LIMIT', '256M');
inwp-config.php
- Add
php_value memory_limit 256M
in.htaccess
- Add
memory_limit = 256M
inphp.ini
- Try to increase the value to higher value if
256M
is not working
- Add
- Disable Plugins
- Disable all plugins one by one
- Disable Active Theme
- Switch back to default theme
- Switch on Debugging
- Add
define( 'WP_DEBUG', true );
inwp-config.php
- It may show the error messages instead of the white screen. You may get hint to fix the issue after seeing the error
- Add