I started over.<br>
<br>
First, I aliased an ip address onto eth0 and set it up in dns as
'<a href="http://rt.blackdogsoft.net">rt.blackdogsoft.net</a>'. Then I configured a separate ssl virtual host
for that site, and verified I could access it with a browser properly.<br>
<br>
Next, I built and installed rt as user apache, which is what my
webserver runs as. rt is installed directly ito the document root.
Accessing that with a browser got me to the 'Almost there!' page. I
then built and installed fastcgi, as root. Continuing to follow method
#1 on the wiki's fastcgiconfiguration page, I added just the entries in
the example, only changing the paths to match mine.<br>
<br>
Outside the virtual host definition, I have:<br>
<br>
        FastCgiIpcDir /tmp<br>
        FastCgiServer
/u1/www/sites/rt-secure/bin/mason_handler.fcgi -idle-timeout 120
-processes 4<br>
<br>
and in the virtual host definition, I have:<br>
<br>
        ServerName <a href="http://rt.blackdogsoft.net">rt.blackdogsoft.net</a><br>
        DocumentRoot "/u1/www/sites/rt-secure/share/html"<br>
        AddDefaultCharset UTF-8<br>
<br>
        AddHandler fastcgi-script fcgi<br>
        ScriptAlias / /u1/www/sites/rt-secure/bin/mason_handler.fcgi/<br>
<br>
        # Use separate log files:<br>
        ErrorLog /u1/www/logs/rt-secure/error_log<br>
        CustomLog /u1/www/logs/rt-secure/access_log combined<br><br clear="all">When I tried to access rt, the logs complained that 'FCGI.pm' couldn't be located in '@INC', so I used cpan to install it.<br>
<br>
Now I have four mason_handler.fcgi processes running, as I should.
However, I'm still getting the 'Almost there!' page, when I try to
access rt, and this is in the logs:<br>
<br>
[Thu Oct 20 15:49:27 2005] [error] [client <a href="http://192.168.32.111">192.168.32.111</a>] FastCGI:
comm with server "/u1/www/sites/rt-secure/bin/mason_handler.fcgi"
aborted: idle timeout (120 sec)<br>
[Thu Oct 20 15:49:27 2005] [error] [client <a href="http://192.168.32.111">192.168.32.111</a>] FastCGI:
incomplete headers (0 bytes) received from server
"/u1/www/sites/rt-secure/bin/mason_handler.fcgi"<br>
<br>
My config file has this in it:<br>
<br>
Set( $rtname, '<a href="http://rt.blackdogsoft.net">rt.blackdogsoft.net</a>');<br>
Set($Organization , "<a href="http://blackdogsoft.net">blackdogsoft.net</a>");<br>
Set($DatabasePassword , 'my-password-here');<br>
<br>
I feel like I'm really close now. Could someone help me to figure out this last part, please? TIA.<br>-- <br>        -ste