oddmuse: I get 404
Xan
24 October 2009, 19:15
 
Hiawatha version: 6.17.1
Operating System: debian (linux)
Hi,
I compiled my own package in debian against latest version of Hiawatha. I configuring it for serving perl cgi files (I attached the .conf file below). With prova.pl it works well, but with oddmuse (current.pl) it does not run:
/var/www/wiki# ll
total 164
-rwxr-xr-x 1 root root 154795 23 oct 18:19 current.pl
-rw-r--r-- 1 root root      5 23 oct 18:19 hola.html
-rwxr-xr-x 1 root root    104 23 oct 20:44 prova.pl
*************
cat prova.pl 
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<html><body>Hello, world.</body></html>";
****************
What is that work wrong?
Thanks a lot,
Xan.
cat hiawatha.conf 
# Hiawatha main configuration file
#
# GENERAL SETTINGS
#
ServerId = www-data
ConnectionsTotal = 50
ConnectionsPerIP = 10
SystemLogfile = /var/log/hiawatha/system.log
GarbageLogfile = /var/log/hiawatha/garbage.log
# BINDING SETTINGS
# A binding is where a client can connect to.
#
Binding {
	Port = 80
#	Interface = 127.0.0.1
#	MaxKeepAlive = 30
#	TimeForRequest = 3,20
}
#
#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
#}
# URL TOOLKIT
# These URL toolkit rules are made for the Banshee PHP framework,
# which can be downloaded from: http://banshee.leisink.org/
#
#UrlToolkit {
#	ToolkitID = banshee
#	RequestURI isfile Return
#	Match ^/(favicon.ico|robots.txt|sitemap.xml)$ Return
#	Match .*\?(.*) Rewrite /index.php?$1
#	Match .* Rewrite /index.php
#}
# 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 = /var/www/wiki
#StartFile = index.html
ShowIndex = yes
ExecuteCGI=yes
AccessLogfile = /var/log/hiawatha/access.log
ErrorLogfile = /var/log/hiawatha/error.log
#ErrorHandler = 404:/error.cgi
# 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
#}
# DIRECTORY SETTINGS
# You can specify some settings per directory.
#
#Directory {
#	Path = /home/baduser
#	ExecuteCGI = no
#	UploadSpeed = 10,2
#}
 
Hugo Leisink
24 October 2009, 19:25
 What does the error logfile say? Are you sure it's not the current.pl which is outputting a 404 Status header?
 
Xan
24 October 2009, 19:58
 Nothing. it's empty
Now I get code 500.
How can I test that it's oddmuse bug?
Anyone could try that? Really oddmuse setup is easy [http://www.oddmuse.org/cgi-bin/oddmuse/Setup_on_a_Unix_System]
Xan
 
Hugo Leisink
24 October 2009, 20:04
 Try adding " TriggerOnCGIstatus = no" to your 'Default website' configuration.
 
Xan
24 October 2009, 20:18
 Yes, It works!!!!
Thanks, Hugo.
Xan.
 
Xan
24 October 2009, 20:45
 Now when oddmuse show me HomePage I receive 404
Xan.
 
Xan
24 October 2009, 20:46
 I access to http://172.26.0.2/wiki.pl/HomePage
 
Hugo Leisink
24 October 2009, 21:19
 Try "EnablePathInfo = yes"
 
Xan
24 October 2009, 21:38
 Now, perfect behaviour.
Thanks a lot,
Xan.
PS: perhaps you could put a howto in oddmuse web page. just a suggestion
 
This topic has been closed.