When I go this page: http://localhost:8888/Intranet/admin/build/block... nothing. When I change the last phrase to 'blocks', I get to a generic site building page. Clicking on that link produces... the White Screen of Death again.

I desperately need to get this project finished and out the door - please help!

Thanks!

- Susan

Comments

justageek’s picture

If you can look in the apache error log and php error log, you might find some clues as to what is happening. Post any information you find here.

lomo’s picture

http://drupal.org/node/158043 is all about WSOD issues and is worth reading through (including comments) when you run into this sort of issue.

Hope that helps and best of luck. :-)

See you at the Drupalcon!

Alderson’s picture

[Thu May 10 16:13:32 2012] [error] [client ::1] Directory index forbidden by Options directive: /Applications/MAMP/htdocs/

What does this mean, and how can I fix it?

Thank you!

- Susan

justageek’s picture

You need to edit your httpd.conf file for your web server and l look for:

<Directory />
    Options Indexes FollowSymLinks
    AllowOverride None
</Directory>

Change it to

<Directory />
    Options Indexes FollowSymLinks
    AllowOverride All
</Directory>

You can also do this on per site site basis if you are running multiple sites on the server. You have to restart your web server after the edit.

Alderson’s picture

Well, unfortunately, nothing has worked yet. I'm going to go through each WSOD possible fix and restart the server after each attempt. I'll let you know if I find a fix for it!
Thanks!

- Susan

justageek’s picture

If you put that error message into Google, it appears to point to apache setup issues.