Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How to Speed Up my Web site?

  • This topic is empty.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #27360
    hydrozova
    Member

    hi guys,
    i am new on this forum.
    please first have a look on this web site
    http://www.realtechsynergy.com
    i know it’s not good design.
    i just want to make that web site faster and i want it to be good looking
    i just need your suggestions.

    Thanks,
    Vijay

    #68744

    There are lots of ways actually.

    • Optimize your images using a service such as Smushit or PunyPNG[/*:m]
    • Use Gzip compression when serving up your text content, such as CSS, Javascript, HTML.[/*:m]
    • Enable browser caching of your page items by setting expires headers and cache control via .htaccess[/*:m]
    • Minify your Javascript/CSS[/*:m]
    • And loads more![/*:m][/list:u]

      Also, I suggest that you try and place all of your Javascript at the bottom of the page if you can. This isn’t possible with all scripts, but most are fine being moved to the footer.

    #68761

    I know a good way to speed up your blog, just limit the number of posts per page from 10 to 5. Your website/blog will be fast again.

    You can also use a plugin called super cache. Search for it at WordPress.

    #68762
    hydrozova
    Member

    Enable browser caching of your page items by setting expires headers and cache control via .htaccess
    Can anyone please explain me above line
    give me an example if possible :)

    #68791
    #68809
    hydrozova
    Member

    thank you so much

    #68887
    leehughes
    Member

    am a bit confused by the .htaccess tricks..

    Do you just copy and paste

    Code:
    # cache images and flash content for one month

    Header set Cache-Control “max-age=2592000”

    # cache text, css, and javascript files for one week

    Header set Cache-Control “max-age=604800”

    # cache html and htm files for one day

    Header set Cache-Control “max-age=43200”

    # implement minimal caching during site development

    Header set Cache-Control “max-age=5”

    # explicitly disable caching for scripts and other dynamic files

    Header unset Cache-Control

    # alternate method for file caching
    ExpiresActive On
    ExpiresDefault A604800 # 1 week
    ExpiresByType image/x-icon A2419200 # 1 month
    ExpiresByType application/x-javascript A2419200 # 1 month
    ExpiresByType text/css A2419200 # 1 month
    ExpiresByType text/html A300 # 5 minutes
    # disable caching for scripts and other dynamic files

    ExpiresActive Off

    In to your .htacess file?

    #68906
    hydrozova
    Member

    thank you so much

Viewing 8 posts - 1 through 8 (of 8 total)
  • The forum ‘Back End’ is closed to new topics and replies.