Hi there
I am fairly new to Drupal, so please forgive me! I have just completed a fresh install for D6 and the content pages show fine. However, when I click Administer, after a long while I just get a blank screen. So I cannot access any of the admin functions such as modules etc.
Have checked permissions on the Site and all are set to 755
Please can anyone help
Thanks
Hi, This sounds like a
Hi,
This sounds like a problem with PHP. Check you PHP error log and see what it returns. More often than not you'll need to increase the amount of memory that PHP can eat in php.ini
Ben
Add this code to the top of
Add this code to the top of your settings.php file and it will show you what error PHP is reporting...
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
Remove the code once you're done debugging.
Or that...
...would be far easier! :)
Problem solved
Yes it was a problem with my host who had re-set the php version to php4 rather than 5!!
Thanks for the help.