1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Best host for vBulletin? (I need speed)

Discussion in 'vBulletin' started by JPMiddleton, May 9, 2011.

  1. #1
    Quite a few people have complained that our site, http://www.theproductforum.com, is very slow.

    I am looking for the best host for our forum, the two main criteria being -
    • Load Speed
    • Unlimited Bandwith

    If anyone has any recomendations it would be much appreciated.
     
    Solved! View solution.
    JPMiddleton, May 9, 2011 IP
  2. Brandon Sheley

    Brandon Sheley Illustrious Member

    Messages:
    9,721
    Likes Received:
    612
    Best Answers:
    2
    Trophy Points:
    420
    #2
    Really any host will work..
    Might check out urljet, they seems to target vBulletin forums, also I've heard good things about http://hostatom.net.
     
    Brandon Sheley, May 9, 2011 IP
  3. JPMiddleton

    JPMiddleton Well-Known Member

    Messages:
    1,728
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    115
    #3
    Thanks Brandon, I am currently with www.register365.com and a few of our members have complained of seriously slow speeds. Have you used either of these?
     
    JPMiddleton, May 9, 2011 IP
  4. #4
    I've never used them, I'd do a search at webhostingtalk.com for any host you may consider.
     
    Brandon Sheley, May 10, 2011 IP
  5. stach14

    stach14 Peon

    Messages:
    178
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I recommend m3server.com to host your forum. Here is one I run that is hosted there if you want to see an example. livegroupbreaks.net
     
    stach14, May 12, 2011 IP
  6. builtSEO

    builtSEO Well-Known Member

    Messages:
    289
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    111
    #6
    The speed is good.
    Besides your can use CDN to speed up Static contents. If you are concern with price, try to load from *COOKIE-LESS* images from sub-domain or different domain
    I also remove "What's Going on? " for non-members so that Server doesn't need to perform the query.
     
    builtSEO, May 22, 2011 IP
  7. drivemecrzy

    drivemecrzy Peon

    Messages:
    179
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    I'm recommened for HawkHost.com :)
     
    drivemecrzy, May 26, 2011 IP
  8. JamesG603

    JamesG603 Active Member

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    66
    #8
    It looks like you aren't caching your static content which is probably way they're complaining. Basically they have to download all the images on every pageload.
    http://www.webpagetest.org/result/110527_AD_PY4D/


    For a quick fix try adding this to your .htaccess file; it'll cache your static items for one month, GZip your text, and remove the E-Tags.
    # 1 MONTH
    <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|mp3|mp4|css|js)$">
    Header set Cache-Control "public"
    Header set Cache-Control "max-age=2592000, public"
    Header unset Last-Modified
    </FilesMatch>
    
    # compress text, html, javascript, css, xml:
    AddOutputFilterByType DEFLATE text/plain
    AddOutputFilterByType DEFLATE text/html
    AddOutputFilterByType DEFLATE text/xml
    AddOutputFilterByType DEFLATE text/css
    AddOutputFilterByType DEFLATE application/xml
    AddOutputFilterByType DEFLATE application/xhtml+xml
    AddOutputFilterByType DEFLATE application/rss+xml
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE application/x-javascript
    
    Header unset ETag
    FileETag None
    Code (markup):
    As for a new host, I use 1 & 1 Internet. A little pricy but my down time has been pretty much nonexistent.
     
    JamesG603, May 27, 2011 IP
  9. -Aw-

    -Aw- Active Member

    Messages:
    319
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    80
    #9
    Oh, gee, you score 43/100 on Google PageSpeed. Add this too, along with what was just up there. vBulletin isn't really known for its speed, so you really have to optimize it yourself if you want to consider using it. That, or consider some other forum software.

    Header unset Pragma
    FileETag None
    Header unset ETag
    
    # 1 YEAR
    <FilesMatch "\.(ico|pdf|flv)$">
    Header set Cache-Control "max-age=29030400, public"
    </FilesMatch>
    # 1 WEEK
    <FilesMatch "\.(jpg|jpeg|png|gif|swf)$">
    Header set Cache-Control "max-age=604800, public"
    </FilesMatch>
    # 2 DAYS 172800
    <FilesMatch "\.(xml|txt|css|js)$">
    Header set Cache-Control "max-age=604800, proxy-revalidate"
    </FilesMatch>
    # 1 MIN
    <FilesMatch "\.(html|htm)$">
    Header set Cache-Control "max-age=60, private, proxy-revalidate"
    </FilesMatch>
    
    <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
    Header set Expires "Thu, 15 Dec 2011 20:00:00 GMT"
    </FilesMatch>
    Code (markup):
    Also, scale down all these images to 48x48 and then run them under image optimizers such as YSmush.
    http://www.theproductforum.com/forums/images/styles/TotallyPro/statusicon/id1forum_old-48.png
     
    -Aw-, May 28, 2011 IP
  10. dungeon_keeper

    dungeon_keeper Greenhorn

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #10
    good info thanks man :)
     
    dungeon_keeper, Jun 14, 2011 IP
  11. mcloud

    mcloud Member

    Messages:
    70
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #11
    mcloud, Sep 3, 2011 IP
  12. picanicanick

    picanicanick Active Member

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    61
    #12
    picanicanick, Sep 8, 2011 IP
  13. PoBoy

    PoBoy Guest

    Messages:
    88
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Agreed with mcloud. I wouldn't worry so much about which host as I would about upgrading to a VPS from shared.
     
    PoBoy, Sep 23, 2011 IP
  14. JPMiddleton

    JPMiddleton Well-Known Member

    Messages:
    1,728
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    115
    #14
    JPMiddleton, Sep 23, 2011 IP
  15. thnam8x

    thnam8x Peon

    Messages:
    9
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    i think you choice hxxp://ipage.com
    it good for vbulletin
     
    thnam8x, Sep 25, 2011 IP