gpt4 book ai didi

php - AJAX PHP 网::ERR_CONTENT_DECODING_FAILED

转载 作者:行者123 更新时间:2023-12-01 02:52:13 26 4
gpt4 key购买 nike

我从我的网站获取 abc.com/content/show.php net::ERR_CONTENT_DECODING_FAILED。这是我第一次看到这个问题。我已经搜索了一些解决方案,但他们无法解决我的问题。

$("body").on("click", ".notifHG", function() {
var ID = $(this).attr("id");
//doing AJAX request
$.ajax({
url:"/content/show.php",
beforeSend:function(){
$('#myDiv').fadeOut('slow');
},
success:function(response){
$('.NotificatonListWrap').html(response);
}
});

});

show.php

<?php include_once '../functions/funcs.php'; ?>

最佳答案

我在互联网上找到了您的问题的可能答案(感谢 Google!)。

这是浏览器错误?

http://stefantsov.com/fixing-err_content_decoding_failed-in-apachephp/

如果您遇到此错误:

ERR_CONTENT_DECODING_FAILED Error 330 (net::ERR_CONTENT_DECODING_FAILED): Unknown error.

此错误似乎与网页的压缩和解压缩有关。如果您使用 gz 输出,或对 ob_start() 函数或 php/apache 模块的自动压缩进行任何压缩,您可能会遇到此问题...对于某些 apache 版本。

一个可能的修复方法是激活正确的模块:

Adding zlib.output_compression = On to php.ini.

关于php - AJAX PHP 网::ERR_CONTENT_DECODING_FAILED,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41253130/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com