I am using OpenBSD installed with perl, apache, firefox, gedit. I am trying to run foswiki on OpenBSD.
Whenever i try to run
http://127.0.0.1/foswiki/bin/configure
it gives 500 internal server Error. When i checked Logs it revels following information.
[Wed Mar 19 08:24:33 2014] [error] (2)No such file or directory: exec of /htdocs/foswiki/bin/configure failed
[Wed Mar 19 08:24:33 2014] [error] [client 127.0.0.1] Premature end of script headers: /htdocs/foswiki/bin/configure
Can someone guide on what is the issue and how do i resolve. ?
Regards
Location of files: /var/www/htdocs/foswiki
The httpd.conf
file has following configuration.
> ServerType standalone
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
Include /var/www/conf/modules/*.conf
> DocumentRoot "/var/www/htdocs"
>
>
> ScriptAlias /foswiki/bin "/var/www/htdocs/foswiki/bin"
>
> Alias /foswiki "/var/www/htdocs/foswiki" Alias /foswiki/pub
> "/var/www/foswiki/pub"
>
> <Directory "/var/www/htdocs/foswiki">
> Order Allow,Deny
> Allow from all
> Deny from env=blockAccess </Directory>
>
> <Directory "/var/www/htdocs">
> Order Allow,Deny
> Allow from all
> Deny from env=blockAccess </Directory>
>
>
> <Directory "/var/www/htdocs/foswiki/bin">
> AllowOverride None
> Order Allow,Deny
> Allow from all
> Deny from env=blockAccess
>
> Options ExecCGI FollowSymLinks
> SetHandler cgi-script
>
> </Directory>