WordPress white screen of death

This error usually results into a plain white screen with no error message. This makes it the most puzzling because you have no clue where to look and what to fix.

Most of the time it is caused when a script exhausts PHP memory limit. It can also happen due to a configuration on the server.

Solutions: a) Increasing the Memory Limit

b) Disabling All Plugins

c) Replace Theme with a Default Theme

d) Or in some servers you will be required to modify your PHP.INI file.

/* Trick for long posts /

ini_set('pcre.recursion_limit',20000000);
ini_set('pcre.backtrack_limit',10000000);

http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-wordpress-white-screen-of-death/