I'm having an issue with the last step of configuring Bugzilla. When I run
testserver.pl I receive the following:
TEST-OK Got front picture.
[Tue Oct 3 16:58:47 2006] testserver.pl: Use of uninitialized value in
pattern match (m//) at testserver.pl line 101.
[Tue Oct 3 16:58:47 2006] testserver.pl: Use of uninitialized value in
pattern match (m//) at testserver.pl line 101.
TEST-FAILED Webserver is not executing CGI files.
I am assuming that I'm doing something wrong in the httpd.conf file.
I'm guessing that I am messing up at the bugzilla part at the bottom of the
file. Any help will be greatly appreciated.
Thanks,
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
#BUGZILLA DIRECTORY
<Directory /var/www/vhosts/beta/httpdocs/bugzilla>
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
DirectoryIndex index.cgi
AllowOverride Limit
</Directory>
> _______________________________________________
> support-bugzilla mailing list
> support-...@lists.mozilla.org
> https://lists.mozilla.org/listinfo/support-bugzilla
> PLEASE put support-...@lists.mozilla.org in the To: field when
> you reply.
Thanks,
John
"P Warwick" <pwar...@rogers.com> wrote in message
news:mailman.6774.116010530...@lists.mozilla.org...