Connecting to my site takes extremely long time
|
04-23-2014, 01:02 PM
Post: #1
|
|||
|
|||
Connecting to my site takes extremely long time
Can somebody please help and tell how to shorten the time to upload my site's pages (powered by weebly): http://www.studyabroad.kk-blc.com (about 18.9 ms to load)
I have many images in the site and was wondering if there is a way how to compress the data. Regards, Miguel |
|||
04-25-2014, 11:43 AM
Post: #2
|
|||
|
|||
RE: Connecting to my site takes extremely long time
If you are using weebly you are going to find it tough to take control of site speed.
Regarding images: First of all choose the right image format for the right job. There three commonly used image format for websites: GIF JPEG PNG GIF is the most website friendly, for it generates a much smaller image file than the other two formats. It is best used when the images do not have a lot of colors in it or is black and white. JPEG is a very commonly used image format. Since it support a color pallet of over 16 million shades, JPEG is often used in photo prints. JPEG files are much larger than GIF. PNG have excellent color and flexibility. The best part about PNG is that you can create images without a background color, so it can take on any background you have. PNG creates pretty large files, so it is best used for smaller images such as logos and icons. Choosing the right image format for the right job will greatly increase your website efficiency. In places where you do not need high quality images, you can use formats with small file sizes to achieve the same effect. Weebly will automatically compress images but there are a number of image compressors available online to help you control the size of your images. Most importantly, properly sizing images can save many bytes of data. From the Developers at Google: Sometimes you may want to display the same image in various sizes, so you will serve a single image resource and use HTML or CSS in the containing page to scale it. For example, you may have a 10 x 10 thumbnail version of a larger 250 x 250 image, and rather than forcing the user to download two separate files, you use markup to resize the thumbnail version. This makes sense if the actual image size matches at least one - the largest - of the instances in the page, in this case 250 x 250 pixels. However, if you serve an image that is larger than the dimensions used in all of the markup instances, you are sending unnecessary bytes over the wire. You should use an image editor to scale images to match the largest size needed in your page, and make sure that you specify those dimensions in the page as well. David Trounce www.malleeblue.com |
|||
04-25-2014, 12:33 PM
Post: #3
|
|||
|
|||
RE: Connecting to my site takes extremely long time
My GOD.
http://www.webpagetest.org/result/140425_JF_2EN/ A fat page is a SLOW page, every time. How fast do you think a 10 MEGABYTE page should load on a browser? First off, click on every link on this page that says "analyze JPEG" and WPT will give you the optimized version of your image. Third choice is usually the smallest. Download these to your computer, rename them to match what's on the server, and upload to overwrite. You're saving 7.5 megabytes just by doing this, without losing anything on the page. Here's the specific list: Code: Compress Images: 23/100 Next you need to Leverage browser caching of static assets. This is simple if you're on a linux server by using the .htaccess file. Insert this code at the top of the file: Code: <IfModule mod_expires.c> Doing just these two things will speed your site up toweringly. |
|||
05-09-2015, 12:07 PM
Post: #4
|
|||
|
|||
RE: Connecting to my site takes extremely long time
As Anton said...
1) Fix your Apache config - turn on compression + expires tags. 2) Compress + Progressify all your .jpeg images, which you can do for all images at once using something like ImageMagick on the command line. Write a script that goes through + saves original image + compresses/progresifies all images on server. Like help speeding up your site? Skype me @ ID davidfavor for a quote. Be sure to include your site name in your Skype Add Contact request. |
|||
05-10-2015, 03:30 AM
Post: #5
|
|||
|
|||
RE: Connecting to my site takes extremely long time
I agree with what the other posters have said above in the thread - dealing with the images would be my number 1 priority straight of the gate on this one.
I would also consider ditching one of the fonts used on your website and consolidating the CSS files into as few as possible (possibly even 1 if you use @import to import your Google fonts CSS as well). I specialise in speeding up websites. Want a free quote? Just give us a private message and we'll see what we can do for you. |
|||
09-02-2015, 11:04 PM
Post: #6
|
|||
|
|||
RE: Connecting to my site takes extremely long time
Looks like you've made good progress improving your site.
On simple thing you can do to improve your site a more is to compress/strip/progressify your jpeg images. I use ImageMagick convert for this with a command line incantation similar to... convert $in -strip -interlace Plane -quality 95% $out Like help speeding up your site? Skype me @ ID davidfavor for a quote. Be sure to include your site name in your Skype Add Contact request. |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 2 Guest(s)