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.