Closed Thread
Page 3 of 14
FirstFirst 1 2 3 4 5 13 ... LastLast
Results 21 to 30 of 135

Thread: Suspension for high-usage?

  1. #21
    x10Hosting Member alid1712 is an unknown quantity at this point alid1712's Avatar
    Join Date
    Dec 2007
    Location
    Brunei Darussalam
    Posts
    72

    Re: Suspension for high-usage?

    yeah, we should have a live monitor on our usage.
    The Philosophy of Zenith Empire
    "Philosophy is the love of wisdom"

  2. #22
    x10 Sophmore Clinton is an unknown quantity at this point
    Join Date
    Aug 2007
    Posts
    166

    Re: Suspension for high-usage?

    Hmm, I'm glad I've seen this before installing wordpress(which I can't seem to do anyway without mySql access).

    Lets say I was to find another database host and just point my wordpress MySQL info there? That should work right? I don't think I have the time or patience to deal with monitoring files or usage especially if it's something as minuscule as uploading wordpress themes causing "high-usage".

  3. #23
    x10Hosting Member n30the0ne is an unknown quantity at this point n30the0ne's Avatar
    Join Date
    Nov 2008
    Location
    Zion City
    Posts
    81

    Re: Suspension for high-usage?

    I guess this is happening especially to the sites residing on the lotus server...

    Even mine got suspended... Even before all this, when I started my site in December (http://tech.elementfx.com) I was aware that Wordpress sometimes may become very heavy. Thats why I used the cache plugins to reduce the load... But now I am suspended, I am thinking of ways on how to further optimize my site.. Anybody have any ideas on optimizing Wordpress based sites?
    Follow me on Twitter! Visit my blogs at
    Technology Unleashed
    Technology Unleashed pro
    and dont forget to give your precious opinions or comments there!
    Suggestions on improving it is very much welcome!

  4. #24
    x10Hosting Member rosmac9 is an unknown quantity at this point
    Join Date
    May 2009
    Posts
    3

    Re: Suspension for high-usage?

    Add me to the list of suspended as well. I was playing around with Cron Jobs though, but still a cron job an hour which impliments a 10 line script which adds two numbers and stores them in a db is high usage?

  5. #25
    x10Hosting Member swapcool is an unknown quantity at this point
    Join Date
    Dec 2007
    Posts
    29

    Re: Suspension for high-usage?

    I am on lotus and my account also got suspended. I have a myBB forum and wordpress blog and neither has much traffic. I dont use any conjob so I not suru whay has caused high CPU usage.

  6. #26
    x10Hosting Member pikifab is an unknown quantity at this point
    Join Date
    Jun 2009
    Posts
    5

    Re: Suspension for high-usage?

    Well someone requested my php script.


    PHP Code:
        <?php
            $Hostname 
    "localhost";
            
    $Database "database";
            
    $Username "usename";
            
    $Password "password";
            
            
    $IP $_SERVER['REMOTE_ADDR'];
            
    $DB mysql_connect("$Hostname""$Username""$Password");
            
    mysql_select_db("$Database"$DB);
            
            
    $Name    $_POST['Name'];
            
    $Email   $_POST['Email'];
            
    $pPhone   $_POST['Phone1']."-".$_POST['Phone2']."-".$_POST['Phone3'];
            
    $sPhone   $_POST['Phone4']."-".$_POST['Phone5']."-".$_POST['Phone6'];
            
    $Date    $_POST['Month']."/".$_POST['Day'];
            
    $Time    $_POST['Hour'].$_POST['Minute'].$_POST['AP'];
            
    $Length  $_POST['Length1'].$_POST['Length1'];
            
    $People  $_POST['People'];
            
    $Note    $_POST['Note'];
            
    $Confirm $_POST["Confirm"];
            
            if(
    $Confirm){
                
    $to "MYEMAILHERE@hotmail.com";
                
    $from "From: ".$Name." (".$Email.")";
                
    $subject "LESSON REQUEST!";
                
    $body "A request for a lesson has been scheduled for ".$Date." at ".$Time." for ".$Length." hours, with ".$People." person(s) \n\n Message: \n".$Note;
                
                if(
    mail($to,$subject$body$from)){
                    
    $Message="A request for this timeslot has been sent! You will recieve an email response as soon as I can! Thanks!";
                }else{
                    
    $Message="Unable to send your request. Please check spelling of your Email Address and try again.";
                }
            }
            

            
            
    $Query mysql_query("SELECT * FROM Clients WHERE IP='$IP'"$DB);
            
    $Data mysql_fetch_array($Query);
            
    $NumRecords mysql_num_rows($Query);
            
            if(
    $NumRecords == 0){
                
    $Query mysql_query("INSERT INTO Clients (IP, Name, Email, $Phone) VALUES ('$IP', '$Name', '$Email', '$Phone')"$DB);
            }else{
                
    $Name   $Data["Name"];
                
    $Email  $Data["Email"];
                list(
    $Phone1$Phone2$Phone3) = split('[-]'$Data["Phone"]);
            }
        
    ?>


    ive changed the code a bit since, anyway....


    i dont feel like posting another thread for this, im setting up auto responders, the thing is, when i recieve the email, since its from the mail() php function, i dont know if it would reply to the right place, im thinking about creating my own php script to make my own auto responder, because i get there email as a var, good idea? possible?
    Last edited by pikifab; 06-24-2009 at 04:55 PM.

  7. #27
    x10Hosting Member MIOW[RU] is an unknown quantity at this point MIOW[RU]'s Avatar
    Join Date
    Aug 2008
    Location
    Russia, Saint-Petersburg
    Posts
    10

    Re: Suspension for high-usage?

    Quote Originally Posted by Elesarr View Post
    yup good points there zen-r

    most people with static sites or fill-in-forms wil be fine.

    its the forum software with lots of mods that "do things", chat servers, shout boxes, etc (and the other stuff Corey mentioned) that will cause the monitor is react.
    No, i have only very basic stuff on my board.

    Also i can't load Suspension page for unknown reason.

  8. #28
    Lord Of The Keys zen-r is an unknown quantity at this point zen-r's Avatar
    Join Date
    Aug 2008
    Location
    Location,Location. Nothing else matters ....apparently.
    Posts
    1,937

    Re: Suspension for high-usage?

    Quote Originally Posted by MIOW[RU] View Post
    No, i have only very basic stuff on my board.

    Also i can't load Suspension page for unknown reason.
    I assume that your "reason" is the one being discussed here? ; http://forums.x10hosting.com/free-ho...el-thread.html
    For great installation & servicing of Audio Visual systems & equipment
    inc. LCD & Plasma Screens, Loudspeakers, Projectors, Aerials & Satellite Dishes, Lighting effects & controllers, Hifi, Amplifiers, Surround Sound, Home Cinema & Video etc
    -: based around Plymouth, Devon, or anywhere in the southwest of the UK, visit :-

  9. #29
    x10Hosting Member MIOW[RU] is an unknown quantity at this point MIOW[RU]'s Avatar
    Join Date
    Aug 2008
    Location
    Russia, Saint-Petersburg
    Posts
    10

    Re: Suspension for high-usage?

    I mean i can't load Suspension page http://x10lotus.x10hosting.com/suspended.page/ O.o
    But i've just checked and problems discussed in that thread exist too. Weird because a few hours ago all was ok.

  10. #30
    Lord Of The Keys zen-r is an unknown quantity at this point zen-r's Avatar
    Join Date
    Aug 2008
    Location
    Location,Location. Nothing else matters ....apparently.
    Posts
    1,937

    Re: Suspension for high-usage?

    Yeah. We'll just have to wait until it's all up again.
    For great installation & servicing of Audio Visual systems & equipment
    inc. LCD & Plasma Screens, Loudspeakers, Projectors, Aerials & Satellite Dishes, Lighting effects & controllers, Hifi, Amplifiers, Surround Sound, Home Cinema & Video etc
    -: based around Plymouth, Devon, or anywhere in the southwest of the UK, visit :-

Closed Thread
Page 3 of 14
FirstFirst 1 2 3 4 5 13 ... LastLast

Similar Threads

  1. high server usage suspension - time suspended arbitrary?
    By rockthecasbah in forum Free Hosting
    Replies: 3
    Last Post: 08-03-2008, 01:42 AM
  2. Question about high account usage suspension / php
    By chrismrulz in forum Free Hosting
    Replies: 1
    Last Post: 08-02-2008, 09:44 PM
  3. my account suspended high server usage
    By moreuse in forum Free Hosting
    Replies: 2
    Last Post: 07-27-2008, 09:56 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts