.htaccess cache settings break admin page editing in Firefox? - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Installation & Setup (http://get-simple.info/forums/forumdisplay.php?fid=5) +--- Thread: .htaccess cache settings break admin page editing in Firefox? (/showthread.php?tid=2083) |
.htaccess cache settings break admin page editing in Firefox? - d2a - 2011-08-16 Just implemented the htaccess cache headers recommended in the Wiki, but in Firefox (3.6 OS X, with WebDev toolbar) when i come to edit the source of a page via the admin pages, the source is seemingly cached, so changes are not shown - they do occur in the backend but only show up if the page is refreshed - not when the save updates button is pressed. The html editor is disabled in the backend settings and i am using version 3.0. Also occurs in Safari. Is this a known issue or am i missing something? Many thanks for any help and congratulations on a really great CMS. .htaccess cache settings break admin page editing in Firefox? - ccagle8 - 2011-08-17 Can you copy in here exactly what you changed? .htaccess cache settings break admin page editing in Firefox? - d2a - 2011-08-17 I used the optimisation code from here: http://get-simple.info/wiki/config:htaccess#optimization and pasted it into the .htaccess file in the web server root. it had the desired effect of caching and compressing my files, as i confirmed with safari audit. Code: # Enable GZIP Health check passes except for ZipArchive: PHP Version 5.2.17 - OK cURL Module Installed - OK GD Library Installed - OK ZipArchive Not Installed - Warning SimpleXML Module Installed - OK Apache Mod Rewrite Installed - OK .htaccess cache settings break admin page editing in Firefox? - ccagle8 - 2011-08-17 GS.info has this in it's .htaccess file and is running just fine (although i only use Chrome) .htaccess cache settings break admin page editing in Firefox? - d2a - 2011-08-17 I will test with the html editor enabled to see if this is the problem. if necessary i can obviously disable cache in my editing browser but i just thought it seemed odd. .htaccess cache settings break admin page editing in Firefox? - mvlcek - 2011-08-17 d2a Wrote:I used the optimisation code from here: http://get-simple.info/wiki/config:htaccess#optimization and pasted it into the .htaccess file in the web server root. it had the desired effect of caching and compressing my files, as i confirmed with safari audit. I suppose, you must somehow exclude /admin/* from caching. .htaccess cache settings break admin page editing in Firefox? - [/root.] - 2011-08-17 Hi, the .htaccess code from wiki is ok, just add this code to prevent caching for .php files. otherwise you might want to disable caching for /admin folder (I don't have the code for that, sorry). Code: <FilesMatch "\.(php)$"> .htaccess cache settings break admin page editing in Firefox? - d2a - 2011-08-19 [/root.] - diamond. thank you for your solution. all working A-ok now. .htaccess cache settings break admin page editing in Firefox? - [/root.] - 2011-08-21 No problems. I just did a quick test and created .htaccess file in /admin folder with the code I posted above. So now the website became amazingly fast and there are no glitches in control panel. |