Plugin Author
senols
(@senols)
Hi @magnetoid
It looks like you are having an issue with your WordPress site related to FastCGI server communication and PHP script execution. Based on the error messages provided, there are a few potential causes for this issue:
- Incorrect FastCGI configuration: Your FastCGI configuration settings may be incorrect or incompatible with your server setup. Check your server’s FastCGI configuration and make sure it is properly configured to work with PHP.
- PHP script timeout: The PHP script (admin-ajax.php) might be taking too long to execute, causing the server to time out. You can try increasing the timeout settings in your FastCGI configuration or optimizing your PHP script to execute faster.
- Insufficient server resources: Your server might not have enough resources (CPU, RAM) to handle the requests, leading to connection resets. Consider upgrading your server resources or optimizing your site to consume fewer resources.
- Corrupted or incompatible plugins: There might be a plugin installed on your WordPress site that is causing the issue. You can try disabling your plugins one by one and checking if the issue persists. If it is resolved after disabling a specific plugin, you’ve identified the cause and can either look for an alternative plugin or reach out to the plugin developer for support.
To narrow down the issue, check your server logs for any additional information or error messages related to the issue.
I also find some links regarding that error, these might help:
https://stackoverflow.com/questions/12153518/connection-reset-by-peer-mod-fcgid-error-reading-data-from-fastcgi-server
https://stackoverflow.com/questions/22307610/end-of-script-output-before-headers-error-in-apache
Plugin Author
senols
(@senols)
Hi @magnetoid, any update on this?