Wordpress Error

Soldato
Joined
28 Sep 2003
Posts
10,387
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.
 
Soldato
Joined
18 Oct 2003
Posts
19,413
Location
Midlands
The plugin is trying to use more resources than the server will allow. You could try renaming the plugin's folder on the server so that Wordpress can't load it. That will at least get him back into his admin area.

As for fixing the plugin, is it actively being developed? It's starred out above.
 
Soldato
OP
Joined
28 Sep 2003
Posts
10,387
Location
London
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 ...
 
Soldato
OP
Joined
28 Sep 2003
Posts
10,387
Location
London
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
 
Soldato
Joined
18 Oct 2003
Posts
19,413
Location
Midlands
Interesting, thanks. Still unsure if that overrides the server limit, I'd be surprised if it can. But always good to know about application settings.
 
Soldato
Joined
6 Feb 2004
Posts
20,674
Location
England
Still unsure if that overrides the server limit, I'd be surprised if it can.

it would be amazingly sloppy if any hosting provider let you set your own limits. but maybe they allow higher limits than what they set as the default hoping that most people won't ever need to change it. the obvious thing to do is check their terms or contact support.
 
Back
Top Bottom