Pages

Friday, January 24, 2014

how to solve blank pages or "white screen of death" (WSOD) in drupal?

This issue will come generally because of allocation of memory in mysql, to over come this just run the below query in mysql server.

mysql> SET max_allowed_packet = 1024 * 1024 * 512;
 
or
 
mysql> SET global max_allowed_packet=1024 * 1024 * 512;