is it possible to increase my loading speed of my website? I am on a shared hosting service... therefore there are quite a lot of things I can't install...
This is my -link removed-
Combine and minify JS, CSS sprites, and lossless image compression are a few good techniques. Google them for instructions, they're pretty simple to do.
Yes, it does take a while to load. Shared hosting is obviously the main reason, but there may be issues like image compression - if you are just scaling down a massive image to a small image through the code, then it's still going to take a lot of bandwidth. If you need smaller images, then rescale them in an image editor and compress it. Make use of sprites as well.
prestashop has already have these functions and it is already done... but it is still slow... sigh... if i move to another shared host, it will still be the same?
my location is in Singapore and my server is in Singapore and I am getting around the same speed as you guys. 3 sec to load up the page... around 5 sec to fully load up...
i am doing -link removed- sales. most of my crowd are in Singapore, but I am looking into internationally...
Javascripts at bottom, minimize, compress
Remove related widgets
Reduce social buttons
Leverage browser caching
Load less comments
Use caching plugin
Reduce images and their sizes
Disable gravatars
Embed less videos
GZip compression on
Reduce sidebar / footer clutter
Avoid extra comment systems
If it's a wordpress blog, an outdated plugin might also slow down your site, also a plugin using thrid parties connections that used a poor hsoting might also slow down your blog
The Page Speed rule "Optimize images" tries to losslessly compress all images in a page. When it succeeds, it shows the compressed versions. To use the minimized version of an image, in the Page Speed panel, click the link to the compressed version, save it, and use it instead of the original image. A theme/template can also affect speed of your site; try using a light template or theme.
1. Remove query strings from static resources
Specify a character set in HTTP headers to speed up browser rendering. This is done by adding a simple piece of code into your header:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2. Minify your codes
Removing HTML comments, CDATA sections, whitespaces and empty elements will decrease your page size, reduce network latency and speed up load time.