Welcome to Pintexx Forum Sign in | Join | Faq

pinEdit

Started by Pintexx Support at 10-14-2005 2:36 . Topic has 0 replies.

Print Search
Sort Posts:    
   10-14-2005, 2:36
Pintexx Support is not online. Last active: 30.12.2008 07:11:54 Pintexx Support

Top 10 Posts
Joined on 08-30-2005
Posts 1.571
Improving download speed

If a new browser session is opened then IE first reads all images also when IE cache settings are set to "Automatically".
To allow access to cached files also in this case you can confiure your web server.

IIS

You have to add a new http header like this:

  • Open IIS manager
  • Open settings for your web site
  • Goto http header
  • Create a new user defined header :
    name: cache-control
    value: max-age=86400

The number behind max-age is the age of the image


Apache

Please add those settings to httpd.conf:

# enable expirations
ExpiresActive On
# expire GIF images in the client's cache
ExpiresByType image/gif A86400
ExpiresByType image/png A86400
ExpiresByType  application/x-javascript A86400

 

 

 

 


   Report 
Pintexx Forum » Knowledge Base » pinEdit » Improving download speed