Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
I've found some textpattern-speed-problems - How can I continue?
Hello
Every Webmaster has Access to the google webmastertools and here the program page speed gernerates some messages. This messages I’ve investigated.
The detailed results you can find in the german Article: Page-Speed-Probleme mit CSS-Dateien von Textpattern and yes, I plan to translate it complete. But before I do it, it may be better place this link here.
The summary of this article is.
- Texpattern should support a “Last-Modified”-Tag in the HTTP-Response-Header of a CSS-File
- Texpattern should support a “Etag”-Tag in the HTTP-Response-Header of a CSS-file
- Textpattern should gzip the CSS-files.
The arcticle explains how I’ve detected this problem, and it shows a workaround to solve the problem without changing textpattern.
My questions here are:
- Is this point interesting for you or not?
- If it is interesting, may it be possible to write an english description in an english blog as gues author
The other point – do you want to include the features into textpattern may be more your decision. The workaround works well enough.
Best regards
Wolfgang
Offline
Re: I've found some textpattern-speed-problems - How can I continue?
Hello Wolfgang,
I, for one, would certainly like to see a translation of that article. I have been at a loss how to correct these issues.
Joe
Offline
Re: I've found some textpattern-speed-problems - How can I continue?
I would suggest a very simple solution: Use rvm_css, thusly switch to static CSS files, and then configure your web server accordingly to serve those properly:
- http://httpd.apache.org/docs/2.0/mod/mod_deflate.html
- http://httpd.apache.org/docs/2.0/mod/core.html#fileetag
- http://httpd.apache.org/docs/2.0/mod/mod_cache.html
Anything else is too much manual labour, IMHO.
Offline
Re: I've found some textpattern-speed-problems - How can I continue?
Hi Wolfgang,
- Texpattern should support a “Last-Modified”-Tag in the HTTP-Response-Header of a CSS-File
- Texpattern should support a “Etag”-Tag in the HTTP-Response-Header of a CSS-file
- Textpattern should gzip the CSS-files.
Due the Last-Modified-Header and the ETag does more or less the same it’s recomended only use one of these, because of the overhead. Textpattern supports the Last-Modified-Header, so I would prefer the usage of rvm_css and disabling ETagging by simple put the following in you .htaccess. This also suppresses misconfigured ETags:
FileETag None
<ifModule mod_headers.c>
Header unset ETag
</ifModule>
Gzipping should be done by the webservers with mod_deflate and not by the PHP parser, which uses more CPU cycles.
Digital nomad, sailing the world on a sailboat: 32fthome.com
Offline
Re: I've found some textpattern-speed-problems - How can I continue?
wet wrote:
I would suggest a very simple solution: … Anything else is too much manual labour, IMHO.
Thank’s – I will try it
trenc wrote:
Textpattern supports the Last-Modified-Header, so I would prefer the usage of rvm_css and disabling ETagging by simple put the following in you
and disable Etagging …
joebaich wrote:
I have been at a loss how to correct these issues.
Sorry but I’ve a German blog only. A translation only makes sence if it is needed to solve the translation or to be guest author anwhere.
Best regards
Wolfgang
Offline