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
Comment #1
yched commentedYou'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)
Comment #2
Pibu commentedThanks, 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.
Comment #3
(not verified) commented