mod fcgi + mod user dir problem

jozo

Registered
Nov 11, 2010
4
0
51
Hello,
i have enable mod user dir on my website1 with SSL certificate.

https://site1.com work OK
https://site1.com/~user/ is problem

Most of the time work OK, but sometimes i get error. Random in the day is website https://site1.com/~user/ unavailible and i'm redirect to http://site1.com/500.shtml.

When i check apache error logs i see this:

Code:
[Mon May 13 13:20:03 2013] [warn] [client 89.*] (104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
[Mon May 13 13:20:03 2013] [error] [client 89.*] Premature end of script headers: index.php
[Mon May 13 13:20:03 2013] [error] [client 89.*] File does not exist: /home/user/public_html/500.shtml
[Mon May 13 13:20:03 2013] [error] [client 89.*] File does not exist: /home/user/public_html/404.shtml
[Mon May 13 13:20:04 2013] [error] [client 89.*] File does not exist: /home/user/public_html/favicon.ico
[Mon May 13 13:20:04 2013] [error] [client 89.*] File does not exist: /home/user/public_html/404.shtml
suexec policy violation: see suexec log for more details
Unavailibility is sometimes 10 minutes. Next is automatic repair and page work OK.
Where i find problem?
Thanks
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,268
463
Hello :)

I notice the following error message that you provided:

Code:
[Mon May 13 13:20:03 2013] [warn] [client 89.*] (104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
This indicates you are using FCGI as your PHP handler. There are some important considerations for FCGI at:

FCGI Considerations

This includes:

UserDir requests do not function when Apache SuExec is enabled.

The following thread may also be helpful:

mod_fcgid: error reading data from FastCGI server

Thank you.