When I upload the views module in the /module/-directory and go to the /admin/module page, I keep getting a white screen. There's no entry in the drupal error-log, so I have no idea what to do. I have update the Drupal-core to the latest 4.7 version. Any help would be appreciated. Thanks in advance!

Comments

yched’s picture

Status: Active » Fixed

You're probably hitting a memory limit on your php settings.
In drupal 4.7, the admin/module page is quite memory consuming, for it loads all modules (enabled or disabled) - this is not the case in drupal 5 anymore.

You should take a look at http://drupal.org/node/29268 about increasing memory in your php settings (you might have to negociate with your hosting company if you are on a shared hosting)

Pibu’s picture

Thanks, that was the solution! For future visitors of this page; I added "ini_set('memory_limit', '12M');" to my sites/default/settings.php file. After that the module-listing showed and the install succeeded.

Anonymous’s picture

Status: Fixed » Closed (fixed)