Server error: Connection reset by peer | End of script output before headers
Viewed 2447 times since Mon, Feb 28, 2022
I managed to solved this by adding FcgidBusyTimeout . Just in case if anyone have similar issue with me. Here is my settings on my apache.conf: <VirtualHost *:80> ....... <IfModule mod_fcgid.c> FcgidBusyTimeout 3600 <...
Read More
PHP Warning: PHP Startup: Unable to load dynamic library ’curl’
Viewed 774 times since Thu, Feb 3, 2022
simply copy libcrypto-1_1-x64.dll, libssh2.dll, libssl-1_1-x64.dll and nghttp2.dll from the PHP folder into the apache bin folder. Ref:https://www.titanwolf.org/Network/q/7f78aa5c-6ba2-41ed-8644-5c9366426eea/y
Read More
"End of script output before headers" in Apache + PHP
Viewed 613 times since Sun, Feb 27, 2022
The issue was that the request was timing out before the script completed, due to a long-running database query. So that generic End of script output before headers error can be caused by server timeouts as well as file permissions...
Read More
How to Change the Apache Error Messages
Viewed 459 times since Fri, Feb 25, 2022
You can change the Apache error messages for a single app by adding ErrorDocument directives to the app's .htaccess file. For example, any of these formats work: ErrorDocument 403 "Sorry, access to this page is forbidden."ErrorDocument 500 http:...
Read More
Apache - Internal Server Error - LimitInternalRecursion
Viewed 448 times since Thu, Mar 10, 2022
Virtualmin->Configure SSL Website -> Edit Directives -> httpd.conf -> Add: AliasMatch ^/.*$ /home/example/public_html/disabled_by_virtualmin.html
Read More