Author Topic: Caching of images speeds up program  (Read 3252 times)

Offline seansan

  • Jr. Member
  • **
  • Posts: 84
Caching of images speeds up program
« on: December 14, 2006, 07:52:30 AM »

By adding patch below a .htaccess file will be created in the images dir - caching images locally for 1 day. This speeds up roundcube

Code: [Select]


Index: roundcubemail/skins/default/images/.htaccess
===================================================================
--- roundcubemail/skins/default/images/.htaccess (revision 0)
+++ roundcubemail/skins/default/images/.htaccess (revision 0)
@@ -0,0 +1,5 @@
+### activate mod_expires
+ExpiresActive On
+### Expire .gif's 1 day from when they're accessed
+ExpiresByType image/gif A86400
+ExpiresByType image/png A86400
\ No newline at end of file