Home > Article > Backend Development > Why Does OpenX Generate \"Error 330 (net::ERR_CONTENT_DECODING_FAILED)\" After Server Migration?
Troubleshoot "Error 330 (net::ERR_CONTENT_DECODING_FAILED)" After Server Migration
Recently, after migrating to a new server, a system administrator encountered several issues. One of the most puzzling problems involved the adserver OpenX, which crashed and displayed the following error messages:
To resolve the issue, the administrator should verify that the following PHP settings are correct:
Additionally, OpenX requires the following PHP extensions:
Cause of the Error
The error "Error 330 (net::ERR_CONTENT_DECODING_FAILED)" typically occurs when the HTTP request's headers indicate that the content is gzip encoded, but it is not.
Resolution
To fix the issue, the administrator can either:
By checking these settings and ensuring that the content is properly encoded, the administrator can resolve the error and restore normal functionality to OpenX.
The above is the detailed content of Why Does OpenX Generate \"Error 330 (net::ERR_CONTENT_DECODING_FAILED)\" After Server Migration?. For more information, please follow other related articles on the PHP Chinese website!