I'm trying to make bugzilla work on your webserver but I got this error when I try to test the server:
"----------
TEST-WARNING Failed to find the GID for the 'httpd' process, unable to validate webservergroup.
TEST-OK Got front picture.
Use of uninitialized value in pattern match (m//) at ./testserver.pl line 101.
TEST-FAILED Webserver is not executing CGI files.
TEST-FAILED Webserver is permitting fetch of http://ourdomain.com
Check your webserver configuration.
"-----------
here's my httpd.conf:
ServerId: 33:33
ConnectionsTotal = 50
ConnectionsPerIP = 10
SystemLogfile = /var/log/hiawatha/system.log
GarbageLogfile = /var/log/hiawata/garbage.log
Binding {
Port = 80
MaxRequestSize=3024
}
CGIhandler = /usr/bin/php5-cgi:php
CGIhandler = /usr/bin/perl:pl
CGIhandler = /usr/bin/python:py
CGIExtension = cgi
FASTCGIserver {
FASTCGIid = PHP5
ConnectTo = 127.0.0.1:2005
Extension = php, php4,php5
SessionTimeout = 15
}
Hostname = 127.0.0.1
WebsiteRoot = /var/www/hiawatha
Startfile = index.html
VirtualHost {
Hostname = ourdomain
WebsiteRoot = /var/www/bugzilla
StartFile = index.cgi
AccessLogfile = /var/www/bugzilla/access.log
ErrorLogfile = /var/www/bugzilla/error.log
ExecuteCGI = yes
}
VirtualHost {
Hostname = phpmyadmin
WebsiteRoot = /var/www/phpmyadmin
StartFile = index.php
ExecuteCGI = yes
FastCGI = PHP5
}
What you think is wrong? phpmyadmin works fine by the way..