I am trying to setup rt 3.4.5 with fastcgi on redhat enterprise 4 .<br>i took the configuration from <a href="http://wiki.bestpractical.com/index.cgi?action=search;search_term=RHEL4InstallGuide">RHEL4InstallGuide.</a><br>
I also read the "RT Essential book"<br><br>my /etc/httpd/conf/httpd.conf Virtual host :<br><br>NameVirtualHost *:80<br> <VirtualHost *:80><br> ServerAdmin root<br> ServerName <a href="http://rt3.example.com">
rt3.example.com</a><br> DocumentRoot /opt/rt3/share/html/<br> AddDefaultCharset UTF-8<br> # Adding the following for RT (the ticket tracker)<br> AddHandler fastcgi-script .fcgi<br> <Directory "/opt/rt3/share/html">
<br> Options FollowSymLinks ExecCGI<br> AllowOverride None<br> </Directory><br>### # Pass through requests to for noauth<br> Alias /NoAuth/images /opt/rt3/share/html/NoAuth/images<br> ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/
<br> </VirtualHost><br> FastCgiIpcDir /tmp<br> FastCgiServer /opt/rt3/bin/mason_handler.fcgi -idle-timeout 120 -processes 4<br><br><br><br>whenever i run apache(without errors ) , i get in the log file:<br> <br>[warn] FastCGI: server "/opt/rt3/bin/mason_handler.fcgi" started (pid 9452)
<br>[Wed May 24 18:38:38 2006] [warn] FastCGI: server "/opt/rt3/bin/mason_handler.fcgi" started (pid 9453)<br>[Wed May 24 18:38:39 2006] [warn] FastCGI: server "/opt/rt3/bin/mason_handler.f<br><br><br><br>when i try :
<br><a href="http://rt3.example.com/">http://rt3.example.com/</a><br><br><br>i get the following in the error log:<br>[error] [client x.x.x.x] FastCGI: incomplete headers (0 bytes) received from server "/opt/rt3/bin/mason_handler.fcgi"
<br><br><br><br><br>whenever comment out the line <br>"ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/"<br><br>then restart apache , i get the famous "you're Almost there" page.<br>I checked all permissions (rt was as installed with the same user apache runs)
<br>i checked the /opt/rt3/bin/mason_handler.fcgi manually and it works.<br>I read the <a href="http://wiki.bestpractical.com/index.cgi?action=search;search_term=FastCGIConfiguration">FastCGIConfiguration</a> dozen of times.
<br>'I also tried to put "ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/" <br>in different places of httpd.conf.<br><br>what is wrong with my configuration ?<br>thanks<br><br><br><br><br><br>