Wordpress Error

Soldato
Joined
28 Sep 2003
Posts
10,408
Location
London
a friend is asking for my help ,but its abit above my skill level

when logging in to wordpress getting this error

Fatal error: Allowed memory size of 54525952 bytes exhausted (tried to allocate 7680 bytes) in /mounted-storage/home10c/sub001/sc13838-ZHDF/dev/wp-content/plugins/*****/*****/nextgen_admin/class.page_manager.php on line 74


any help much appreciated.
 
a search on google said to add a memory line to the wp-login.php file, which i did

he can log in again

site is loading really slowly, but atleast he is in again ...
 
no. that was one option i read about to edit the ini file

this was a increase memory line in the php file
 
no problem at all:

adding this line to your wp-config.php file:
define('WP_MEMORY_LIMIT', '64M');

or


2. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)

3. If you don't have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M
 
Back
Top Bottom