Hey Greetings from Costa Rica.
We are developing a website in one of the Universities here and we want help finding out how to solve a weird situation we are facing with our drupal installation.
Our configuration is: Centos 5.3 PHP 5.2.13 Drupal 6.16 MySql5.0.77
Now when we try to access [OURSITE]/?q=admin/build/menu-customize/primary-links it just gives us blank page.
This is actually working in our WAMP configuration and when we migrated to Linux showing blank page in this one particular case, the rest works just fine.
We need to know how to edit the primary links in the code or how to make this work if it is a known issue.
We changed the php memory_limit in the php.ini to 1024MB thinking it might fix it but yet waiting.
We really need help on this. We appreciate any collaboration.
Thanks so much and welcome to our country! :)
Comments
In your index.php file just
In your index.php file just after the opening php tag, add the following to enable error reporting which will show you the error that is coming up, unless of course you have access to your PHP error log file.
error_reporting(E_ALL);
James T
Action Medical Research - www.action.org.uk
THANKS A LOT JAMES for your answer!
The error showed me this: Fatal error: Unsupported operand types in common.inc on line 1592
I read: http://drupal.org/node/739158
I was able to FIX it! making sure the files matched the database imported.
Thanks again!