Wordpress Blank Page or Permalink Problems
Tuesday, May 5th, 2009We have noticed a common trend affecting sites running Wordpress on servers running the latest version of PHP 5.2.9-2. The issue appears to be with the way that php5.2 handles include files, which WordPress uses extensively, and results in an empty (blank) white page being displayed when your site/blog is viewed.
The fix is extremely simple, which is to edit the following line found towards the bottom of the index.php page from:
require(’./wp-blog-header.php’);
to:
require(’wp-blog-header.php’);
That’s it!
If you use Permalinks in association with the ISAPI ReWrite software we have installed on our software, you may also like to include the following block of code at the very top of the index.php page you just edited:
//*****************************
// IIS FIX for Isapi ReWrite
//
$_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
//*****************************
This fixes problems with all permalink pages/entries displaying the default blog/home page.
If you require any other help with your site please contact support.