Roundcube Community Forum

 

Caching of images speeds up program

Started by seansan, December 14, 2006, 07:52:30 AM

Previous topic - Next topic

seansan


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



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