Re: Blank modules page

torgosPizza's picture
Offline
Bug FinderEarly adopter... addicted to alphas.Getting busy with the Ubercode.
Joined: 08/14/2007
Juice: 4110
Re: Blank modules page

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 - 14:33