word press plugins taking up too much memory

1

Click here to load reader

Upload: peterwyborn

Post on 07-Jul-2015

79 views

Category:

Technology


4 download

DESCRIPTION

best674287

TRANSCRIPT

Page 1: Word press plugins taking up too much memory

Wordpress Plugins taking up too much memory.

After Using Some of my WordPress SEO Plugins I noticed my PHP

memory WordPress memory is set to 32M. The blog then displays that WordPress has

a Fatal memory error and my WordPress blog is not useable.

Top 10 SEO Plugins For WordPress is a collection of PHP script files, so it only makes

sense to increase the PHP memory limit when the WordPress memory limit is

increased. WordPress comes with a default memory limit of 32MB, but this may not be

sufficient when you have a lot of plugins, and a lot of traffic to your blog.

To increase the default WordPress memory add the following line to the wp-config.php

file:

define(‘WP_MEMORY_LIMIT’, ’64M’); to the WP-config.php file in the public_html

directory. *** Warning backup the file*** some editors like notepad can cause the file to

get corrupt. Then WordPress will really not work.

You can use any of the following options for the WP-Config file.

define(‘WP_MEMORY_LIMIT’, ’64M’);

define(‘WP_MEMORY_LIMIT’, ’96M’);

define(‘WP_MEMORY_LIMIT’, ’128M’);

I would recommend only the next level. From 32 to 64, not from 32 to 128 meg.

Because depending on your hosting this may work or may not be allowed, or you may

be shut down. With over 1000 wordpress blogs I have learned a trick or two.

best674287