Bug #17806
closedAfter #22546 setting [BE][CompressionLevel] crashes Backend Design
0%
Description
The Backenddesign is crashed as you can see on http://typo.pfadfinder-weeg.de/typo3/ also after the login the design does not work. It is not possible to change anything.
(issue imported from #M14582)
Updated by Chris topher over 14 years ago
Having a look at your source, you have [BE][CompressionLevel] set:
../typo3temp/compressor/ext-all-notheme-ce48a38ef3fa7a8a196ad140c5ee728d.css.gzip?1275419916
Setting it to 0 will avoid the error (which is no solution, but just a workaround).
Updated by Christian Leicht over 14 years ago
Have you setup the mod_rewrite rules in .htaccess
(read typo3_src/NEWS.txt)
Updated by Chris topher over 14 years ago
Resolved, no change required:
To solve the problem add the following to your .htaccess file as described in misc/advanced.htaccess:
<FilesMatch "\.js\.gzip$">
AddType "text/javascript" .gzip
</FilesMatch>
<FilesMatch "\.css\.gzip$">
AddType "text/css" .gzip
</FilesMatch>
AddEncoding gzip .gzip