• Hello, I had the Error #-200: HTTP Error show with only certain files that I was trying to process.

    My server is set up in a Raspberry Pi runing Nginx and the problem would only occur when the file was complex but not big enough. I tried what was suggested in another post here to decrease File Chunk Size in the plugin settings but it did not work.

    So I found the solution and I would like to share it with you. I also noticed from time to time a 504 Gateway timeout error. The solution for me was to increase the timeout setting to prevent the 504 error from happening and it also helped to prevent the Error #-200: HTTP Error as well.

    Here is a webpage containing the solution of how to increase the nignx timeout settings:

    https://support.plesk.com/hc/en-us/articles/115000170354-An-operation-or-a-script-that-takes-more-than-60-seconds-to-complete-fails-on-a-website-hosted-in-Plesk-nginx-504-Gateway-Time-out

    Basically the steps are to open the nginx config file

    nano /etc/nginx/nginx.conf

    and add the following lines to http { }:

    http {
    <…>

    proxy_send_timeout 180s;
    proxy_read_timeout 180s;
    fastcgi_send_timeout 180s;
    fastcgi_read_timeout 180s;
    }

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Error #-200: HTTP Error’ is closed to new replies.