Hi,
Im trying to install bugzilla on my linux server.
When i run ./testserver.pl
http://bugzillz.example.com
i get tis error
TEST-OK Webserver is running under group id in $webservergroup.
TEST-OK Got front picture.
Use of uninitialized value $response in pattern match (m//) at ./testserver.pl line 110.
Use of uninitialized value $response in pattern match (m//) at ./testserver.pl line 110.
TEST-FAILED Webserver is not executing CGI files.
TEST-OK Webserver is preventing fetch of
http://bugzilla.fluveen.com/localconfig.
I hav configured my httpd.conf using
<VirtualHost 173.45.229.85:80 >
ServerName fluveen.com
ServerAlias bugzilla.fluveen.com
DocumentRoot /var/www/production/bugzilla/
ScriptAlias /cgi-bin/ /var/www/cgi-bin/
#SetEnv X_BUGZILLA_SITE "bugzilla.example.com"
#SetEnv X_BUGZILLA_WEBPATH "/"
RewriteEngine On
# Rewrite the index access to the CGI path. This avoids the use of the
#HTML redirect file and causes the next rule to be processed as well.
RewriteRule ^/index.html /index.cgi [N]
#All requests for cgi get dumped to the relevant bugzilla script.
RewriteRule ^/(.*\.cgi.*) /cgi-bin/bugzilla/$1 [PT]
</VirtualHost>
<Directory "/var/www/production/bugzilla">
Options +Indexes +FollowSymLinks +ExecCGI
DirectoryIndex index.html index.html.var index.cgi
AllowOverride Limit
AddHandler cgi-script .cgi
</Directory>
Plz help me solving the above error and run buzilla successfully.
Thanks in advance.