Forum

ErrorHandler no access

Martin Eskdale Moen
15 May 2010, 22:28
Sorry about the long delay, I have not had a chance to get back to this:
To continue on your last post, here is my config file:
# Hiawatha main configuration file
#


# GENERAL SETTINGS
#
ServerId = www-data
ConnectionsTotal = 150
ConnectionsPerIP = 10
SystemLogfile = /srv/wintersevedata/logs/hiawatha/system.log
GarbageLogfile = /srv/wintersevedata/logs/hiawatha/garbage.log


# BINDING SETTINGS
# A binding is where a client can connect to.
#
Binding {
Port = 80
Interface = 92.243.10.156
MaxKeepAlive = 100
TimeForRequest = 2,50
MaxRequestSize = 16384
}
#
#Binding {
# Port = 443
# Interface = ::1
# MaxKeepAlive = 30
# TimeForRequest = 3,20
# SSLcertFile = hiawatha.pem
#}


# BANNING SETTINGS
# Deny service to clients who misbehave.
#
#BanOnGarbage = 300
#BanOnMaxPerIP = 60
#BanOnMaxReqSize = 300
#KickOnBan = yes
#RebanDuringBan = yes


# COMMON GATEWAY INTERFACE (CGI) SETTINGS
# These settings can be used to run CGI applications. Use the 'php-fcgi'
# tool to start PHP as a FastCGI daemon.
#
#CGIhandler = /usr/bin/perl:pl
#CGIhandler = /usr/bin/php-cgi:php
#CGIhandler = /usr/bin/python:py
#CGIhandler = /usr/bin/ruby:rb
#CGIhandler = /usr/bin/ssi-cgi:shtml
#CGIextension = cgi
#
#FastCGIserver {
# FastCGIid = PHP5
# ConnectTo = 10.0.0.100:2005, 10.0.0.101:2005
# Extension = php, php5
# SessionTimeout = 30
#}
FastCGIServer {
FastCGIid = PHP5
ConnectTo = 127.0.0.1:2005
Extension = php, php5
SessionTimeout = 30
}

# URL TOOLKIT
# This URL toolkit rule was made for the Banshee PHP framework, which
# can be downloaded from http://www.hiawatha-webserver.org/banshee
#
#UrlToolkit {
# ToolkitID = banshee
# RequestURI isfile Return
# Match ^/(css|files|images|js)/ Return
# Match ^/(favicon.ico|robots.txt|sitemap.xml)$ Return
# Match .*\?(.*) Rewrite /index.php?$1
# Match .* Rewrite /index.php
#}

UrlToolkit {
ToolkitID = drupal
RequestURI exists Return
Match (/sites/.*/files/imagecache/.*) Rewrite /index.php?q=$1
Match ^/(.*)\?(.*)\=(.*) Rewrite /index.php?q=$1/$2/$3
Match ^/(.*) Rewrite /index.php?q=$1
#Match .*\?(.*) Rewrite /index.php?q=$1
}


# DEFAULT WEBSITE
# It is wise to use your IP address as the hostname of the default website
# and give it a blank webpage. By doing so, automated webscanners won't find
# your possible vulnerable website.
#
Hostname = 127.0.0.1
WebsiteRoot = /usr/local/var/www/hiawatha
StartFile = index.html
AccessLogfile = /usr/local/var/log/hiawatha/access.log
ErrorLogfile = /usr/local/var/log/hiawatha/error.log
UseFastCGI = PHP5
#ErrorHandler = 404:/index.php


# VIRTUAL HOSTS
# Use a VirtualHost section to declare the websites you want to host.
#
#VirtualHost {
# Hostname = www.my-domain.com
# WebsiteRoot = /var/www/my-domain/public
# StartFile = index.php
# AccessLogfile = /var/www/my-domain/log/access.log
# ErrorLogfile = /var/www/my-domain/log/error.log
# TimeForCGI = 5
# UseFastCGI = PHP5
# UseToolkit = banshee
#}

WorkDirectory = /srv/wintersevedata/tmp

# DIRECTORY SETTINGS
# You can specify some settings per directory.
#
Directory {
Path = /srv/wintersevedata/www/drupal/sites/winterseve.co.uk/files
ExecuteCGI = no
}

VirtualHost {
Hostname = winterseve.co.uk, www.winterseve.co.uk
WebsiteRoot = /srv/wintersevedata/www/drupal
ErrorHandler = 403:/sites/winterseve.co.uk/403.html
AccessLogfile = /srv/wintersevedata/logs/hiawatha/sites/winterseve/access.log
ErrorLogfile = /srv/wintersevedata/logs/hiawatha/sites/winterseve/error.log
Startfile = index.php
TimeForCGI = 30
UseFastCGI = PHP5
UseToolkit = drupal
}


I also just found that I am using version 7.0, not 7.2 as I earlier thought I was

Thank you

Hiawatha version: 7.0
Operating System: Ubuntu 9.10 on a XEN VPS
Martin Eskdale Moen
15 May 2010, 22:29
The previous topic:
http://www.hiawatha-webserver.org/forum/topic/520
Hugo Leisink
15 May 2010, 23:21
The second parameter of ErrorHandler setting must be a path to a file within the WebsiteRoot.
Martin Eskdale Moen
16 May 2010, 00:45
I changed it to:
ErrorHandler = 404:/index.php


Now I get in the logs
Sat 15 May 2010 23:40:46 +0000|<hiding my ip>|/srv/wintersevedata/www/drupal/index.php|ErrorHandler not found


Checked the permission of index.php its set to www-data which the webserver is running as.

Thank you
Hugo Leisink
16 May 2010, 08:07
With what user id is The FastCGI PHP daemon running? Also www-data?
Martin Eskdale Moen
21 May 2010, 11:29
When I check the process it is running under www-data
This topic has been closed.