I’m working on a client’s site (http://www.dryhero.com), running ExpressionEngine 1.6.9 served on Dreamhost.
The home page will frequently (though not always) return a blank white page. This seems to happen more regularly when browsing an interior page and returning to the home page (but happens on initial visits, too).
This error only occurs on the home page, which leads me believe it has something to do with search engine friendly URLs.
I have disabled the “PHP 5 FastCGI” option in Dreamhost as outlined here.
Here is my .htaccess code:
RewriteEngine on
#Access server stats
RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^/failed_auth.html$
RewriteRule ^.*$ - [L]
#Remove index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]I have contacted Dreamhost and they assure me that there are no resource/memory issues. I haven’t found any similar posts here on the forum.
Has anyone experienced this? Any help would be greatly appreciated.