Posted by gsaha on December 20, 2012 at 4:24pm
Our project pages are all of a sudden showing up blank. There are no errors displayed, but just a blank page
The main front page shows up fine as you can see below:
http://teacherweb.ggc.edu/projects
But any project page listed above when clicked gives a blank page. All the content in the project pages are still viewable as administrator, but the vsite pages are all showing blank.
Our developers are looking into it but so far they are stumped.
Any advice would be greatly appreciated.
Comments
Might be a memory issue
When you are setting up a large application like OpenScholar you may bump into the WSOD on particular pages due to the amount of memory required to run it.
Try increasing the memory in your php.ini file and/or in your settings.php file and/or in your .htacess file. Maybe up to 128M?
Also, try and output an error message if you can. Add this to your Drupal's index.php file:
<?phperror_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
?>