为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Firefox 38.0.1 throws errors in console with JS and CSS htaccess compression enabled

  • 3 个回答
  • 1 人有此问题
  • 12 次查看
  • 最后回复者为 gabrio

more options

hi,

I have been working on improving performance on my Wordpress site, one of the things I have done, I switched to dynamic delivery of CSS and JS files (so they are compressed by PHP), which worked very well for performance tests.

Now, I have ALSO added this to the .htaccess in my JS and CSS folder (wp-incldues) on a wordpress site:

<filesMatch "\.(js|css)$">
Header set Content-Encoding x-deflate
# Header set Content-Encoding compress
# Header set Content-Encoding x-gzip
</filesMatch>

for compressing JS and CSS files. this works fine on IE, CSS, Android and speed tests, but the bad thing is that the website appears broken in Firefox 38.0.1, it cannot load my menus and Revolution Slider (image carousel).

main error seems to be jQuery is not defined..

here is a collage that shows the errors...https://dl.dropboxusercontent.com/u/28979877/FirefoxErrorsCollage.png

is there anything else i could change in that .htaccess syntax that will make every browser happy?

any thoughts?

many thanks, Gabrio

hi, I have been working on improving performance on my Wordpress site, one of the things I have done, I switched to dynamic delivery of CSS and JS files (so they are compressed by PHP), which worked very well for performance tests. Now, I have ALSO added this to the .htaccess in my JS and CSS folder (wp-incldues) on a wordpress site: <pre><nowiki> <filesMatch "\.(js|css)$"> Header set Content-Encoding x-deflate # Header set Content-Encoding compress # Header set Content-Encoding x-gzip </filesMatch></nowiki></pre> for compressing JS and CSS files. this works fine on IE, CSS, Android and speed tests, but the bad thing is that the website appears broken in Firefox 38.0.1, it cannot load my menus and Revolution Slider (image carousel). main error seems to be jQuery is not defined.. here is a collage that shows the errors...https://dl.dropboxusercontent.com/u/28979877/FirefoxErrorsCollage.png is there anything else i could change in that .htaccess syntax that will make every browser happy? any thoughts? many thanks, Gabrio

由cor-el于修改

被采纳的解决方案

hi there,

I have turned off the feature from .htaccess for now...

We found out (with the help of Frank from Autoptimize, which I can TOTALLY recommend by the way, he is great!!) that it can't work because what that is doing is declaring the output is compressed, but not actually ... compressing. so firefox is right, the others are wrong.

this should be used, IF the server supports it (ours does not since it's just shared):

<IfModule mod_deflate.c>

        <FilesMatch "\.(js|css)$">
        SetOutputFilter DEFLATE
    </FilesMatch>
</IfModule>

so for the time being, i have removed the .htaccess to compress JS and CSS folders and FF is happy now.

thanks, Gabrio

定位到答案原位置 👍 0

所有回复 (3)

more options

You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.

  • Hold down the Shift key and left-click the Reload button
  • Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
  • Press "Command + Shift + R" (Mac)
more options

Is jQuery loading and getting decompressed before the code that calls it? You can observe loading order to some extent in the Network Monitor:

Open the web console is the lower part of the tab below your page, click Network on its top bar, then reload your page and check the responses and timings.

This might be related: When Firefox 33 was released, an issue surfaced with compressed files where the server did not report the correct length of the file after compression and Firefox therefore treated the file received as corrupted. More info in this thread: Error while downloading file with Firefox 33.

more options

选择的解决方案

hi there,

I have turned off the feature from .htaccess for now...

We found out (with the help of Frank from Autoptimize, which I can TOTALLY recommend by the way, he is great!!) that it can't work because what that is doing is declaring the output is compressed, but not actually ... compressing. so firefox is right, the others are wrong.

this should be used, IF the server supports it (ours does not since it's just shared):

<IfModule mod_deflate.c>

        <FilesMatch "\.(js|css)$">
        SetOutputFilter DEFLATE
    </FilesMatch>
</IfModule>

so for the time being, i have removed the .htaccess to compress JS and CSS folders and FF is happy now.

thanks, Gabrio

由gabrio于修改