Blank pages in Drupal
Nov. 5th, 2006 08:14 pmEver get blank pages in Drupal? I figured out that sometimes it's merely a memory issue. When a PHP instance (being run out of an Apache child) runs out of memory, it just quits silently and doesn't send anything back to the web browser.
The fix for this is to put the following line at the top of index.php:
If that fails to fix the problem, try increasing the memory.
The fix for this is to put the following line at the top of index.php:
ini_set("memory_limit", "16M");
If that fails to fix the problem, try increasing the memory.
(no subject)
Date: 2006-11-06 09:25 am (UTC)(no subject)
Date: 2006-11-06 04:06 pm (UTC)From the PHP code? I'm not sure if that's possible. :-/
(no subject)
Date: 2006-11-06 06:07 pm (UTC)