Why does my site take so long to load?

Discussion in 'HTML & Website Design' started by natkay2603, Apr 17, 2009.

  1. #1
    Hi,

    I have a site that seems to take a while to load and i don't have a clue why. Any ideas?

    http://www.sprogspot.org
     
    natkay2603, Apr 17, 2009 IP
  2. kjambu

    kjambu Peon

    Messages:
    21
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    :)
    there could be various reasons that could be reason
    for the site to be slow.
    If you are using a database in the backend, that could be
    causing contentions. if so pl post back. i can suggest various
    clues.
    else it could be the host you are using to host your site.
    bandwidth, poor coding, infinite loops in code, wrong sql
    hmmm i can list a thousand reasons.

    You need to go step by step in your code and see which part is actually
    taking the most time.

    hope it helps. if you are a newbie, show the codeto an expert.
     
    kjambu, Apr 17, 2009 IP
  3. natkay2603

    natkay2603 Peon

    Messages:
    110
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    i am a newbie, i am using wordpress and my host is godaddy.
     
    natkay2603, Apr 17, 2009 IP
  4. Erratic-Evolutions

    Erratic-Evolutions Banned

    Messages:
    211
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    1. the host could be slow
    2. the server could be over loaded due to large numbers of people on site
    3. the site could be large?
     
    Erratic-Evolutions, Apr 17, 2009 IP
  5. natkay2603

    natkay2603 Peon

    Messages:
    110
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    i guess it must be the host them, as it is a new site so not big and not busy.
     
    natkay2603, Apr 18, 2009 IP
  6. waxman1000

    waxman1000 Peon

    Messages:
    1,365
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #6
    I don't think the problem is the host! Godaddy is reputable host and they don't mess up like the other host.

    I will advice you to wait ans see. If the problem continues, then you ca contact them.
     
    waxman1000, Apr 18, 2009 IP
  7. alphamonk

    alphamonk Peon

    Messages:
    116
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    I would suggest that you make a simple web page and see how long your simple web page takes to load. Here is a very simple template for you to use.

    <html><title>MyTestPage</title>
    <body>
    <center>
    <h1>This is an H1 header</h1>
    <h2> This is an H2 header</h2>
    <h3> This is an H3 header</h3>
    <p> This is paragraph text</p>

    <ul>
    <li>This is line 1 list</li>
    <li>This is line 2 list</li>
    <li>This is line 3 list</li>
    </ul>

    <p>An image is below this text, if you add a url to an image between the src quotes<br>
    <img src="">
    </p>

    <p> A link is below this text<br>
    <a href="http://www.sprogspot.org/blog/">Blogspot</a>
    </p>


    </body>
    </html>
     
    alphamonk, Apr 18, 2009 IP
  8. nayes84

    nayes84 Member

    Messages:
    34
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    43
    #8
    i'm using godaddy also and feel that it takes some more time to load than other hosting companies I dealt with
     
    nayes84, Apr 19, 2009 IP
  9. Avtec

    Avtec Peon

    Messages:
    31
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Yeah that loaded really slow.

    Contact Godaddy about it.
     
    Avtec, Apr 19, 2009 IP
  10. RockyMtnHi

    RockyMtnHi Active Member

    Messages:
    211
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #10
    In short, you are loading a lot of stuff. There are 169 http requests. The HTML page itself accounts for approximately 16 of the 44 seconds as measured by the IBM Page Detailer loading the page in Firefox.

    If you really want to look into the details of this I recommend getting the following free tools that I used to look at your page loads:

    IBM Page Detailer - a firefox load showed that you made 169 separate http requests. This alone will negatively affect the page load times. If you use a content delivery network, or a simple subdomain like images.sprogspot.org then you can double the speed of a lot of it since http 1.1 only allows 2 items to load at a time from the same hostname.

    YSlow (Firefox Plugin) - this tool details 13 or so important attributes of page loads and scores your page on each one of them. It also describes how to work with each one.

    I'd do the following:

    1. Get the tools mentioned above to use in the following efforts.
    2. Scrutinize all objects on the page to see if you need them. Remove those that you don't.
    3. Recode the HTML where possible to remove unnecessary code.
    4. Get a subdomain like images.sprogspot.org and place some of your images there.
     
    RockyMtnHi, Apr 19, 2009 IP
  11. leoslab

    leoslab Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Maybe you install to much wordpress plugin, to much plugin will slow down your wordpress blog.
     
    leoslab, Apr 19, 2009 IP
  12. shazi_786

    shazi_786 Member

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #12
    Contact hosting provider.
     
    shazi_786, Apr 19, 2009 IP
  13. feras80

    feras80 Well-Known Member

    Messages:
    302
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    110
    #13
    feras80, Apr 19, 2009 IP