• I noticed that admin footer in edit posts page (wp-admin/edit.php) stops loading after activating some plugins. Can anyone explain why does it happen? How can I prevent it?

Viewing 3 replies - 1 through 3 (of 3 total)
  • It could be due to the memory_limit in PHP. Perhaps your memory_limit is not high enough to handle the plugins and the rest of the page.

    Hi,

    1) Please check php.ini file in the root/public_html folder of your site. Open php.ini file in text editor and change the values for memory_limit. By default it should see memory_limit = 8M. Try changing it to 12M. if it will not resolve the problem then try to increase it either 16M or 24M.

    2) If you can’t find the php.ini file, open up the PHP file which requires more memory and add this line just after ini_set(’memory_limit’, ‘12M’); we can increase memory upto 16M or 24M to resolve the issue. But do it try with 12M first.

    3) In last, open the .htaccess file from the root/public_html folder and add this line php_value memory_limit 12M

    Thanks,

    Shane G.

    Thread Starter levani01

    (@levani01)

    I changed the memory_limit to 32MB but it didn’t work. Can there be any other reason?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Admin footer stops loading after activating some plugins’ is closed to new replies.