Bug #17806

After #22546 setting [BE][CompressionLevel] crashes Backend Design

Added by Johannes Krautschick about 5 years ago. Updated about 5 years ago.

Status:Resolved Start date:2010-06-01
Priority:Should have Due date:
Assigned To:Chris topher % Done:

0%

Category:- Spent time: -
Target version:-
TYPO3 Version:4.4 Is Regression:
PHP Version:5.3 Sprint Focus:
Complexity:

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)


Related issues

related to Core - Bug #22546: Add a compressor/concatenator for CSS and JS to TYPO3 Closed 2010-04-29
related to Core - Bug #22565: Improve t3lib_compressor Closed 2010-05-02
related to Core - Bug #22917: gzipped files cannot be loaded in the backend Closed 2010-06-17

History

#1 Updated by Chris topher about 5 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).

#2 Updated by Christian Leicht about 5 years ago

Have you setup the mod_rewrite rules in .htaccess
(read typo3_src/NEWS.txt)

#3 Updated by Chris topher about 5 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

Also available in: Atom PDF