The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

How to decrease load time of website?

Hello friends,

How to decrease load time of website?

Try to this little tool from Google:
PageSpeed Insights

Will give you a ton of good stuff to work with. But two major things are usually large images that takes time to download and javascript that blocks rendering of the page.

If you look at the bottom of the page (after having analyzed the URL) I think that you can download all optimized images as a zip-file.
 
  1. Minimize HTTP Requests. ...
  2. Reduce server response time. ...
  3. Enable compression. ...
  4. Enable browser caching. ...
  5. Minify Resources. ...
  6. Optimize images. ...
  7. Optimize CSS Delivery. ...
  8. Prioritize above-the-fold content.
This are step for decrease load time of website
 
The first way to optimize your images is to scale them appropriately.
Enabling browser caching lets you temporarily store some data on a visitors’ computer, so they don’t have to wait for it to load every time they visit your page.
Compression can dramatically reduce your page’s size and thereby increase its speed.compression can knock off 50 - 70% from your HTML and CSS files! That’s a ton of data your visitor won’t have to download
Optimized CSS means your files will download faster, giving your visitors quicker access to your pages.
Javascript files can load after the rest of your page, but if you put them all before your content—as many sites do—they will load before your content does.
 
The single, easiest & most valuable item would be to use a Geo-located CDN like CloudFlare. Allowing your content to load from as close to the request as possible will shave a good deal of latency off your website load time.

Other items that I have seen success from :
Using nginx for static content
Combine & minify css/javascript
Remove unnecessary wordpress plugins (if available)
Limit live traffic monitoring to just Google Adsense/Analytics
Combine DB calls to as close to a single point as possible (if available)
 
Last edited:
Use a CDN like Cloudflare. They have options to minimize html java etc within their dashboard. What are you using wordpress?
 
The two major steps to reduce load time of website. First one, you have to reduce the server response time of your website and the second one is optimizes the sizes of images and CSS files.
 
10 things you can do to speed up your site
  1. Minimize HTTP Requests
  2. Reduce server response time
  3. Enable compression
  4. Enable browser caching
  5. Minify Resources
  6. Optimize images
  7. Optimize CSS Delivery
  8. Prioritize above-the-fold content
 
MI
Back