Bad index.html page? Was (RE: Keep getting mysq l is sues when running 'make initialize-database')

-----Original Message-----
From: Drew Barnes [mailto:barnesaw@ucrwcu.rwc.uc.edu]
Sent: Wednesday, March 30, 2005 1:55 PM
To: Paul Crossman
Cc: rt-users@lists.bestpractical.com
Subject: Re: Bad index.html page??? Was (RE: [rt-users] Keep getting mysql
is sues when running ‘make initialize-database’)

Connection to the RT application is possible at this point for me, but
others get a web page that starts off looking like this…

%# BEGIN LICENSE BLOCK %# %# Copyright (c) 1996-2003 Jesse Vincent
jesse@bestpractical.com %# %# (Except where explictly superceded by
other
copyright notices) %# %# This work is made available to you under the
terms
of Version 2 of %# the GNU General Public License. A copy of that license
should have %# been provided with this software, but in any event can be
snarfed %# from www.gnu.org. %# %# This work is distributed in the hope
that
it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied
warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
the
GNU %# General Public License for more details. %# %# Unless otherwise
specified, all modifications, corrections or %# extensions to this work
which alter its source code become the %# property of Best Practical
Solutions, LLC when submitted for %# inclusion in the work. %# %# %# END
LICENSE BLOCK

This sounds like an httpd.conf problem. What does the section you set
up for RT look like?

DB

Here’s the sections from my httpd.conf file

<Location /NoAuth/images >
SetHandler default-handler

NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin root

DocumentRoot /var/www/html/

DocumentRoot /opt/rt3/share/html/
# Adding the following for RT (the ticket tracker)
AddHandler fastcgi-script fcgi
<Directory "/opt/rt3/share/html">
    Options FollowSymLinks ExecCGI
    AllowOverride None
</Directory>
# Pass through requests to display images
Alias /NoAuth/images /opt/rt3/share/html/NoAuth/images
FastCgiServer /opt/rt3/bin/mason_handler.fcgi -idle-timeout 120 ScriptAlias /rt /opt/rt3/bin/mason_handler.fcgi

Paul C.