Hi,
I'd just installed WordPress on my account and curious on how much CPU usage is used - in case tweaking is required to reduce the load. Is there any tool that I can use to meter the CPU usage in X10?
Thanks
Hi,
I'd just installed WordPress on my account and curious on how much CPU usage is used - in case tweaking is required to reduce the load. Is there any tool that I can use to meter the CPU usage in X10?
Thanks
Hello,
Not as such, however if you reach the limit your account will be temporarily suspended. The limits are outlined here: http://x10hosting.com/wiki/High_Resource_Usage
The problem is that a meter would also need CPU to generate.
One method of reducing CPU load when using wordpress is to install and activate the wp-supercache plugin ( http://wordpress.org/extend/plugins/wp-super-cache/ )
Also, I would recommend doing all of your theme and plugin installs, and all of your updating manually, by downloading the associated files to your PC then uploading them to your account via FTP, as opposed to the automated scripts that tend to spike CPU usage.
░ SJWolfe - VolunteerCommunityCustomer Service Representative
░ Do NOT PM me, email me, or leave me a profile comment requesting support - Create a support ticket.
▒ Livewire's Slave - Wielder of the Finely Dressed Pimp Slap
▓ Join us on IRC! irc.x10hosting.com:6667 #publicchat
Yeah, I did install it manually as Softaculous failed to installed it.
So the CPU usage problem only occurs during wordpress and its plugins installations?
Wordpress is known for being a CPU hog, and not being very efficient in how it makes its calls. People with a higher volume of users that access their site on a daily basis tend to have CPU spikes from the constant access calls required to serve each user, if there's no server-side caching system set up. Automated installs have always caused an HRU suspension for me, so I've stuck with manual installs.
░ SJWolfe - VolunteerCommunityCustomer Service Representative
░ Do NOT PM me, email me, or leave me a profile comment requesting support - Create a support ticket.
▒ Livewire's Slave - Wielder of the Finely Dressed Pimp Slap
▓ Join us on IRC! irc.x10hosting.com:6667 #publicchat
Thanks, looking into installing and activating the wp-supercache plugin.
---------- Post added at 02:57 AM ---------- Previous post was at 02:49 AM ----------
All, I found the following to decrease the load time of WordPress using gzip:
<?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], ‘gzip‘)) ob_start(“ob_gzhandler”); else ob_start(); ?>
Would it work? Which one is better, use the above code, activating wp-supercache plugin, or combination of both?
supercache will in general reduce cpu usage and load times
gzipping the output will in general increase cpu usage but reduce load times