Closed Thread
Results 1 to 9 of 9

Thread: Help suspended for high system resource usage. I want to know what I did?

  1. #1
    a10566a is offline x10Hosting Member a10566a is an unknown quantity at this point
    Join Date
    Feb 2008
    Location
    Barcelona, Spain
    Posts
    7

    Help suspended for high system resource usage. I want to know what I did?

    Hi,

    I use my account for hosting a wordpress with some plug-ins enabled and today I get this message:

    "You have been suspended for high system resource usage. Accounts are suspended for usage when they are detected to have consistently high cpu usage, memory usage, or process amounts. This is an automatic suspension, you're able to unsuspend yourself immediately. Warning 1 of 3"

    How can I know what are wrong in my site?

    Thank you in advance!
    Fernando.

  2. #2
    adamparkzer is offline On Extended Leave adamparkzer is just really nice
    Join Date
    Jun 2008
    Location
    IL, USA
    Posts
    3,745

    Re: Help suspended for high system resource usage. I want to know what I did?

    Quote Originally Posted by a10566a View Post
    Hi,

    I use my account for hosting a wordpress with some plug-ins enabled and today I get this message:

    "You have been suspended for high system resource usage. Accounts are suspended for usage when they are detected to have consistently high cpu usage, memory usage, or process amounts. This is an automatic suspension, you're able to unsuspend yourself immediately. Warning 1 of 3"

    How can I know what are wrong in my site?

    Thank you in advance!
    Fernando.
    Some of your plugins may be using a high amount of system resources. Please check to make sure that all your plugins stay under the permitted amount of resource usage.

    Also, check your cron jobs, as crons running more frequently than one every five minutes could also get you suspended for high system resource usage.

  3. #3
    descalzo's Avatar
    descalzo is offline Grim Squeaker descalzo has a brilliant futuredescalzo has a brilliant futuredescalzo has a brilliant future
    Join Date
    Jul 2009
    Location
    Ankh-Morpork
    Posts
    7,633

    Re: Help suspended for high system resource usage. I want to know what I did?

    Quote Originally Posted by adamparkzer View Post

    Please check to make sure that all your plugins stay under the permitted amount of resource usage.
    How does he do that?
    Nothing is always absolutely so.

  4. #4
    kkenny's Avatar
    kkenny is offline Lord Of The Keys kkenny is an unknown quantity at this point
    Join Date
    Feb 2008
    Location
    I REP THE BAY. (Bay Area, CA, USA)
    Posts
    1,950

    Re: Help suspended for high system resource usage. I want to know what I did?

    Quote Originally Posted by descalzo View Post
    How does he do that?
    You can search for PHP Scripts (WP-Plugins, or an actual script from scratch) that will input on the footer of every page how much server load it took to load the webpage.
    kkenny - retired.
    -Became a Moderator/Staff Member on 4/23/08
    -Became Senior Mod on 8/28/08
    -Became Account Manager on 10/18/08
    -Left Staff and X10 in 2009.


  5. #5
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Help suspended for high system resource usage. I want to know what I did?

    You could also use .htaccess to do this as well:

    .htaccess
    Code:
    php_value auto_append_file /home/user/path/to/file.php
    file.php
    Code:
    <? var_dump(memory_get_peak_usage()); ?>
    If you see that you're always close to 32 MB on a certain page or with a certain plugin enabled, that's your culprit. Disable all the plugins and reenable them one at a time.
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

  6. #6
    jtwhite's Avatar
    jtwhite is offline Community Advocate jtwhite is on a distinguished road
    Join Date
    May 2009
    Location
    TN, USA
    Posts
    1,381

    Re: Help suspended for high system resource usage. I want to know what I did?

    Quote Originally Posted by garrettroyce View Post
    You could also use .htaccess to do this as well:

    .htaccess
    Code:
    php_value auto_append_file /home/user/path/to/file.php
    file.php
    Code:
    <? var_dump(memory_get_peak_usage()); ?>
    If you see that you're always close to 32 MB on a certain page or with a certain plugin enabled, that's your culprit. Disable all the plugins and reenable them one at a time.

    That's a wonderful idea. I'd have never thought to suggest that. I can't rep you for it, apparently I've given too many in a short amount of time.
    If I have helped you, please add to my reputation () on the bottom left corner of this post.
    jtwhite.me - Visit my site :D

  7. #7
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Help suspended for high system resource usage. I want to know what I did?

    :'(

    I'm trying to spread the word on using the auto_prepend_file and auto_append_file settings. You can do so many amazingly cool things with them!
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

  8. #8
    xav0989's Avatar
    xav0989 is offline Community Public Relation xav0989 is just really nice
    Join Date
    Jul 2008
    Location
    ifk
    Posts
    4,436

    Re: Help suspended for high system resource usage. I want to know what I did?

    Make sure to remove the htaccess line after your benchmark is done, as it could lead to some issues.

    I tend not to use those two settings as the type of php files I handle is quite broad: I am using a framework, and some of the entrypoints return binary data, and I wouldn't want the data to be corrupt.
    Last edited by xav0989; 10-07-2009 at 06:59 PM.
    Xavier L | Community Public Relations Manager (Free Hosting Support)
    █ Yes, my position is too cool to even exist!
    How am I helping? Rate this post by clicking the icon below! (this is even better than "liking" a post)
    Terms of Service | Acceptable Use Policy | x10Hosting Wiki

  9. #9
    garrettroyce's Avatar
    garrettroyce is offline Generally Helpful Member garrettroyce is a glorious beacon of lightgarrettroyce is a glorious beacon of light
    Join Date
    Apr 2008
    Location
    IL, USA
    Posts
    3,746

    Re: Help suspended for high system resource usage. I want to know what I did?

    Very true. Good point.
    gjr.gr - coming soon: secrets of OCD coding from a self taught tinkerer

Closed Thread

Similar Threads

  1. Replies: 1
    Last Post: 08-02-2008, 09:44 PM
  2. Replies: 2
    Last Post: 06-27-2008, 01:54 AM
  3. PHP Versions & Resource Usage Script
    By Bryon in forum News and Announcements
    Replies: 11
    Last Post: 02-27-2008, 05:51 PM
  4. Resource Usage Script
    By Corey in forum News and Announcements
    Replies: 70
    Last Post: 01-05-2008, 09:10 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers