Page 1 of 1

**Website load times?**Reduce the load time?

Posted: Sun Apr 18, 2010 10:22 pm
by zch0071
I am using a personal server ~
How to improve website load speed?
Reduce the load time?

Re: **Website load times?**Reduce the load time?

Posted: Sun Apr 18, 2010 11:10 pm
by i2Paq
Why do you think that OC is slow and that it is not related to your server?

Re: **Website load times?**Reduce the load time?

Posted: Mon Apr 19, 2010 12:32 am
by zch0071
I've tried two servers~ Web load times 12.8s~ it's to slow~

How to optimize?

Can you help me?

Re: **Website load times?**Reduce the load time?

Posted: Mon Apr 19, 2010 2:46 am
by i2Paq
Original template, server config, amount of categories/products?

Re: **Website load times?**Reduce the load time?

Posted: Mon Apr 19, 2010 9:59 pm
by zch0071
the problem solved.~it Is the server's problem ~
but~How to better optimize the website so it can load with the shortest times.

Re: **Website load times?**Reduce the load time?

Posted: Tue Apr 20, 2010 11:32 am
by zch0071
Is anyone know how to modify the files so that we can use gzip to compress the resourses below to reduce the load time of the site.These are the resources we want to compress:
/catalog/view/javascript/jquery/jquery-1.3.2.min.js
/catalog/view/javascript/jquery/tab.js
/catalog/view/javascript/jquery/thickbox/thickbox-compressed.js
/catalog/view/javascript/jquery/thickbox/thickbox.css
/catalog/view/theme/default/stylesheet/stylesheet.css

And these two pictures are the same, can we set the files so it only call one? I think this is good for the load time of the site.
catalog/view/theme/default/image/icon_special.png
catalog/view/theme/default/image/icon_bestseller

Thanks for help!!

Re: **Website load times?**Reduce the load time?

Posted: Sat Apr 24, 2010 1:21 pm
by jayman
Add Apache Module mod_deflate on your server and control what file extensions you want compressed via htaccess.

add this to your htaccess after the module has been installed.

Code: Select all

# compress all text & html:
AddOutputFilterByType DEFLATE text/html text/plain text/xml

# Or, compress certain file types by extension:
<Files *.html>
SetOutputFilter DEFLATE
</Files>

<FilesMatch "\.(php|html|css|js)$"> 
SetOutputFilter DEFLATE
</FilesMatch>