Installing Drupal 5.3 on MAMP Results in Blank Screen
Posted November 3rd, 2007 by Elliott
Just a quick tip for what seems to be a common problem. It looks like the issue is a simple memory limit requirement. link to original tip
What I did to get things working:
- Installed fresh copy of MAMP
- Grabbed fresh copy of Drupal
- Moved it to the right folder, usually
/Applications/MAMP/htdocs/ - Unzipped it with Apples BOMArchive Utility (NOT Stuff it), I don't know if it makes I difference, but I hear it preserves hidden files/permissions better then Stuffit
- Went to the
/sites/default/settings.phpfile, enabled read/write permissions for everyone - Added the line:
memory_limit = 12Mto my php.ini file in myMAMP/conf/php5folder (I'm running PHP5) - Added the line:
ini_set('memory_limit', '12M');to my drupal settings.php file - Added the line:
php_value memory_limit 12Mto my .htaccess file in the root Drupal folder. - Ran
localhost:8888/drupaltest/install.phpand it worked like a charm.
So far running Drupal on a MAMP install with Apache 2, and PHP5 makes for a much faster and more responsive experience, much improved over the default apache 1.2/php4 combo you get by default with OS X 10.4










Great post! Just moved from
Great post!
Just moved from XAMPP to MAMP and was struggling with the drupal white screen of death.