White Screen in Drupal with XAMP

No replies
jose
jose's picture
User offline. Last seen 35 weeks 1 day ago. Offline
Joined: 03/30/2009

White Screen of death in XAMPP or MAMP is usually caused by a small amount of memory. 64MB or higher is enough to solve the problem, or at least the chance of the problem being PHP memory related is getting smaller .....

you can try in your .htaccess file

<FilesMatch "\.(php|html?)$">
   php_value memory_limit 64M
</FilesMatch>

or this:

php_value memory_limit 64M

Headphones