Re: Blank modules page

Joined: 08/14/2007
Juice: 3864

Sounds like a namespace conflict. You know (cannot redeclare function foo(bar), already declared in...). You should put some error checking code in your index.php file to tell you exactly where the blank screen is coming from. (I'm assuming by "blank screen" you mean the "White Screen of Death.")

This code (at the top of index.php) will do the trick.

<?php
error_reporting
(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
?>

Help directly fund development: Donate via PayPal!

Drupal 6! By: cobrasound (64 replies) Tue, 10/30/2007 - 13:33