Blank page in CMS Made Simple admin
Hello everybody! I finally recovered from the illness and can work as before. Here is my first after-illness post.
Recently I faced with the following problem:
I transfered CMS Made Simple from one host to another. Made everything correctly: updated config files, etc. But admin page started to show nothing, i.e. I always got blank page when attempted to access admin area.
I’ve investigated the issue and found out that allowed memory limit has been exhausted. But since ‘display_errors’ setting was set to ‘Off’, I got no messages about that.
If you face with similar problem, try this:
In ‘admin/lang.php’ before the following line:
@include(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lang" . DIRECTORY_SEPARATOR . 'en_US' . DIRECTORY_SEPARATOR . "admin.inc.php");
Insert this one:
ini_set("memory_limit", "32M");
I hope this helps somebody.
August 11th, 2009 at 7:22 pm
Wow, this tip just saved my ass. Thanks!
August 21st, 2009 at 8:29 am
It saved my ass too. Great tip!
October 21st, 2009 at 12:08 pm
Great, this worked for me. Thanks very much indeed 🙂