Sunday, February 7, 2010

Blank admin page in Drupal 6

I installed Drupal 6 today on my windows machine in office. After creating the first user I tried to access the Administration Page, but a blank page was returned. I searched google to fix this problem.. What I found was totally helpful... as it solve my problem.

If you too facing such problem then just what you need to do is:-

Go to "system" table of you Drupal Database and change the value of 'status', 'bootstrap' and 'throttle' to 0. By using PHPMyAdmin or MySql Command line:


update system s
set s.status=0, s.throttle=0, s.bootstrap=0
where filename = 'modules/update/update.module'


This help me to access my Drupal's admin panel hope this will help you too.

:)

No comments:

Post a Comment