New Posts
Welcome guest, is this your first visit?
  • Login:
Online Gaming News for Operators and Affiliates
+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 19

Thread: Site load times

  1. #1
    MPC
    MPC is offline
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    Canada Eh?
    Posts
    1,376
    Blog Entries
    20
    Feedback Score
    8 (100%)

    Default Site load times

    A few of you hinted that load times might affect site rankings, or is going to in the future. I'm curious as to what you are getting in terms of load times.

    One of my site, which was all tightly coded in notepad, takes an average of 1.6 seconds to load and this is better than 76% of websites (according to google webmaster tools). I have another site on the same server that uses CMS. Load times on this on are 4 seconds, which is 65% SLOWER than other sites, and that concerns me. Since both sites are on the same server, I am assuming that the performance difference is strictly due to code and images being loaded correct? Because it's a CMS (Wordpress), I assume there's little tweaking I can do to improve that load time. So what is the solution? Better hosting?

  2. #2
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    USA
    Posts
    405
    Feedback Score
    7 (100%)

    Default Re: Site load times

    better hosting, or you could also try a caching plugin.

  3. #3
    Member
    My Status
     

    Add as a friend
    Join Date
    Mar 2009
    Location
    Asia
    Posts
    98
    Feedback Score
    1 (100%)

    Default

    Hi MPC,

    You affiliate types, always thinking in terms of search engines

    You want your site to load more quickly to better convert. Quick loading sites are better for the end user, which search engines also appreciate. Design for users, and the search engines will reward you accordingly.

    With CMSes there are many MORE ways you can optimise than with a static HTML site. Specifically (CMS-generic):

    1. how many requests are needed per page?
    2. how many images are on the page?
    3. how many external stylesheets? Are they minimised and compressed?
    4. how many external Javascript pages? Are they minimised and compressed?
    5. are you using images in menus or headings where you could otherwise use CSS?
    6. how large is the entire front page (including all external sheets, images, HTTP headers)?

    CMS-internal
    6. how long is the system taking to prepare each page?
    7. are there any caching options available to you? This is a big question and how this is approached depends on the specifics of the website.

    This is just scratching the surface.

    If you posted your exact website we could probably help you further.

    JT

  4. #4
    MPC
    MPC is offline
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    Canada Eh?
    Posts
    1,376
    Blog Entries
    20
    Feedback Score
    8 (100%)

    Default

    Quote Originally Posted by JTJagger View Post
    You affiliate types, always thinking in terms of search engines
    Yes, they run my life! hehe!

    Quote Originally Posted by JTJagger View Post
    Are they minimised and compressed?
    Since I don't know how that's done, I'm going to say "no"

    site is mypokercorner dot com

  5. #5
    Bingolady
    My Status
     

    Add as a friend
    Join Date
    Jan 2009
    Location
    In a galaxy far, far away
    Posts
    87
    Feedback Score
    0

    Default

    Best way to find out what is slowing down your site is to install the Page Speed or Yslow tool for Firefox's firebug. That will show you in bits what can be improved on your site.

    Some warnings I saw while running the tool on your site:
    - Specify image dimensions
    - Minimize DNS lookups
    - Combine external CSS
    - Enable gzip compression (this alone enabled will speed up your site by huge amount)

    etc...
    USA bingo
    UK bingo sites
    "Its great to see that Hugh Heffner isn't the only one building and running his empire in his PJ's!" -SeoPants@AGD

  6. #6
    Member
    My Status
     

    Add as a friend
    Join Date
    Mar 2009
    Location
    Asia
    Posts
    98
    Feedback Score
    1 (100%)

    Default

    Quote Originally Posted by MPC View Post
    site is mypokercorner dot com
    Ok, I've had one of my guys have a quick look.

    Basically, there is a fair bit of room for improvement.

    1. You're loading 66 objects. This is what is primarily causing the delay. The browser needs to request each independently, and each request requires HTTP headers back/forth and wait time. Look to change images to text where possible (the "search" button, "view latest content" button, for example, can be made to look almost identical using CSS). The footer is an image when it's seemingly just simple text.

    2. As above, you're loading 4 CSS files. There's no reason to be doing this. Combine them, minify (remove unnecessary whitespace, comments), and compress with gzip. Check out minify, which will do this for you: minify - Project Hosting on Google Code

    3. Worse -- you're loading NINE Javascript files. Again, use the above method and you've immediately turned 4 CSS+9 Javascript files into 2. That's already an 16% reduction in object requests.

    4. Gzip. All modern browsers can handle this. There's no reason to be sending out uncompressed HTML/JS/CSS. You can speak with your webhost to gzip at the httpd level, or a simple websearch for "wordpress gzip" produced several modules that will do exactly what you need (though I have no first hand experience with any).

    Your base HTML page is actually quite small, and will load quickly, which is excellent. However, you're not correctly using height and width tags for your images, so the site doesn't look correct "enough" until the images load. I would go back and add these tags so at least the page looks correct when it's partially loaded.

    That's all I have for now -- which seems enough for you to work with for now -- but when you're ready to fine tune further, check out Yahoo's docs at:
    Exceptional Performance

    Hope this helps.

    JT

  7. #7
    Senior Member
    Believes in the Flying
    Spaghetti Monster
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    Errr
    Posts
    840
    Blog Entries
    4
    Feedback Score
    12 (100%)

    Default

    Wow, kick-ass thread you guys have started here...keep going!

  8. #8
    MPC
    MPC is offline
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    Canada Eh?
    Posts
    1,376
    Blog Entries
    20
    Feedback Score
    8 (100%)

    Default

    Thanks you so much for the info. I don't understand half of it, but at least I know what topics to research! lol! I'll figure it out

    EDIT: I will update this thread with interesting links I come across.
    Last edited by MPC; 03-04-2010 at 03:07 PM.

  9. #9
    MPC
    MPC is offline
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    Canada Eh?
    Posts
    1,376
    Blog Entries
    20
    Feedback Score
    8 (100%)

    Default

    Interesting basic article on gzip compression

    How To Optimize Your Site With GZIP Compression | BetterExplained

  10. #10
    MPC
    MPC is offline
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    Canada Eh?
    Posts
    1,376
    Blog Entries
    20
    Feedback Score
    8 (100%)

    Default

    Compressing your css file:
    Optimize and Compress CSS Files


 

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Clearing Media Library - Increase Load Speed?
    By KevinMcC in forum Wordpress - Web Design - Coding - Technical
    Replies: 8
    Last Post: 12-18-2009, 04:10 PM
  2. How Many Times FFS!
    By doovde in forum PAL Suggestions - Questions - Feedback
    Replies: 4
    Last Post: 11-20-2009, 03:44 PM
  3. Translator Takes Long time to Load
    By pokerprop in forum PAL Suggestions - Questions - Feedback
    Replies: 13
    Last Post: 10-28-2009, 08:56 PM
  4. SPAMED 173 times in a day!!
    By gooderpoker in forum PAL Coffee Shop
    Replies: 3
    Last Post: 06-24-2009, 09:52 PM
  5. Favicon's That Don't Load
    By Chuck in forum General Poker Affiliate Forum
    Replies: 9
    Last Post: 03-02-2009, 06:58 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Powered by vBulletin® Version 4.1.5
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
SEO by vBSEO 3.6.0
Affiliate Program Consultant
Live threads provided by AJAX Threads (Lite) - vBulletin Mods & Addons Copyright © 2012 DragonByte Technologies Ltd. Runs best on HiVelocity Hosting.