Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Web Blast Apache Configuration ERROR 500 |
|
Author |
|
Dimitrius
Joined: 09 Oct 2013 Posts: 1 Location: Brazil
|
Posted: Wed 09 Oct '13 15:08 Post subject: Web Blast Apache Configuration ERROR 500 |
|
|
I'm trying to run Web Blast 2.2.28+ locally trough Easy PHP Dev Server 13.1 (Apache 2.2, Windows 7),but when I click on search it shows ERROR 500 couldn't create child process: 720002: blast.cgi when I open it within my site or the following message appears (blast.cgi content), when I use directly the blast.html page:
Code: | #!/bin/csh -f
#
# $Id: blast.cgi,v 1.1 2002/08/06 19:03:51 dondosha Exp $
#
echo "Content-type: text/html"
echo ""
#setenv DEBUG_COMMAND_LINE TRUE
setenv BLASTDB db
./blast.REAL
|
Apache was installed in "C:\Program Files (x86)\EasyPHP-DevServer-13.1VC9\binaries\apache\bin" and configured as the following (httpd.conf):
Code: | # Added below to get wwwblast to work
AddHandler cgi-script .cgi
<Directory "C:/Program Files (x86)/EasyPHP-DevServer-13.1VC9/data/localweb/original/cgi-bin/">
AddHandler cgi-script .cgi REAL
Options +FollowSymLinks
Options +ExecCGI
Options +Indexes
Order allow,deny
Allow from all
</Directory> |
and the blast.html file is located in "C:\Program Files (x86)\EasyPHP-DevServer-13.1VC9\data\localweb\original\cgi-bin".
In the Apache Access log I found:
Code: |
127.0.0.1 - - [09/Oct/2013:09:52:24 -0300] "POST /original/cgi-bin/blast.cgi HTTP/1.1" 500 1169
|
and in the Apache Error log:
Code: | [Wed Oct 09 09:52:24.552805 2013] [cgi:error] [pid 6584:tid 1036] (OS 2)O sistema não pode encontrar o arquivo especificado. : [client 127.0.0.1:51279] couldn't create child process: 720002: blast.cgi, referer: http://127.0.0.1/original/cgi-bin/blast.html
[Wed Oct 09 09:52:24.552805 2013] [cgi:error] [pid 6584:tid 1036] (OS 2)O sistema não pode encontrar o arquivo especificado. : [client 127.0.0.1:51279] AH01223: couldn't spawn child process: C:/Program Files (x86)/EasyPHP-DevServer-13.1VC9/data/localweb/original/cgi-bin/blast.cgi, referer: http://127.0.0.1/original/cgi-bin/blast.html
|
I really don't understand a little of Apache, but doesn't I activate ExecCGI in my httpd.conf ? I'm very confused.
I have been trying all the combinations I could have imagined (changing the path, file name, apache options sequence), but... nothing.
Can somebody help me? I need so bad, I've been trying to make it run since 2012.
Thank you all and sorry for any language problems =). Dimitrius |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
Posted: Wed 09 Oct '13 15:24 Post subject: |
|
|
Does #!/bin/csh exist in C: ? like
C:\bin\csh.exe ? |
|
Back to top |
|
|
|
|
|
|