Author |
|
twosouth
Joined: 19 Feb 2010 Posts: 12
|
Posted: Wed 24 Feb '10 20:45 Post subject: |
|
|
Turns out there's no McAfee intrusion protection in place, and we de-activated on-access scanning with no change.
Still stuck dead in the water at
Quote: | Syntax error on line 7 of D:/apache/conf/extra/httpd-fcgid.conf:
Wrapper d:/php/php-cgi.exe cannot be accessed: (70008)Partial results are valid but processing is incomplete |
Regardless of what version of PHP I use. |
|
Back to top |
|
Millennium

Joined: 17 Apr 2006 Posts: 179 Location: Leiderdorp, NL, EU
|
Posted: Wed 24 Feb '10 22:50 Post subject: |
|
|
twosouth wrote: | Turns out there's no McAfee intrusion protection in place, and we de-activated on-access scanning with no change.
Still stuck dead in the water at
Quote: | Syntax error on line 7 of D:/apache/conf/extra/httpd-fcgid.conf:
Wrapper d:/php/php-cgi.exe cannot be accessed: (70008)Partial results are valid but processing is incomplete |
Regardless of what version of PHP I use. |
Just something to try. Move your PHP folder inside D:\apache. Let's see if it makes any difference.
I have
- Apache 2.2.14 ApacheLounge Build
- PHP 5.3.1 VC9 NTS
- mod_fcgid v2.3.4 ASF build
running here without any problems. So I think you can stop changing versions. (Just follow James Blont advice about versions to be safe on that one)
Last edited by Millennium on Sat 27 Feb '10 0:36; edited 1 time in total |
|
Back to top |
|
twosouth
Joined: 19 Feb 2010 Posts: 12
|
Posted: Thu 25 Feb '10 1:11 Post subject: |
|
|
Thanks, Millennium. I appreciated the follow-up. I'll give that a shot now and post results. |
|
Back to top |
|
tstrike2000
Joined: 03 Jun 2007 Posts: 2
|
Posted: Thu 25 Feb '10 18:50 Post subject: |
|
|
<IfModule fcgid_module>
#Set default Ini
FcgidInitialEnv PHPRC "D:/PHP"
<Directory "D:/Webroot">
FcgidWrapper "D:/PHP/php-cgi.exe" .php
Options +ExecCGI
</Directory>
<IfModule mime_module>
AddType text/html .php
AddHandler fcgid-script .php
</IfModule>
</IfModule>
Millenium, using your example above I put the above lines in my httpd.conf right below the other module listings and I'm getting I don't have permissions to view phpinfo.php, which I put into my Documentroot, also the directory specified above D:/Webroot. I tried adding an allow all right below Options +ExecCGI and for some reason I still get the persmissions error. I started with a fresh httpd.conf and not sure what I'm doing wrong. |
|
Back to top |
|
James Blond Moderator

Joined: 19 Jan 2006 Posts: 7404 Location: EU, Germany, Next to Hamburg
|
Posted: Fri 26 Feb '10 16:13 Post subject: |
|
|
in the directory block you forgot the Allow / deny rules
e.g.
Code: |
Order allow,deny
Allow from all
|
|
|
Back to top |
|
tstrike2000
Joined: 03 Jun 2007 Posts: 2
|
Posted: Fri 26 Feb '10 22:58 Post subject: |
|
|
James Blond wrote: | in the directory block you forgot the Allow / deny rules
e.g.
Code: |
Order allow,deny
Allow from all
|
|
Ahh, should've known that! Thanks James, that worked. |
|
Back to top |
|
SPeller
Joined: 04 Jul 2011 Posts: 1
|
Posted: Mon 04 Jul '11 9:49 Post subject: |
|
|
Hi guys. I have the 70008 error too. But! It is flow At some time it occur, but after some time it not occur and server starts successfully. The machine is run under AD domain. It seems Apache always starts successfully when starts at system boot and before system connects to AD. When I logged into the system and stop Apache, I can get the error when trying to start Apache again. If so, I wait 10-20-30 minutes and try again and server starts successfully. I am very surprised of this behavior ) Hope someday it will be fixed
ps: sorry for my english |
|
Back to top |
|
daibach
Joined: 24 Apr 2007 Posts: 33 Location: Cardiff, Wales, UK
|
Posted: Tue 26 Jul '11 15:33 Post subject: |
|
|
SPeller is correct, the 70008 error is related to an API Apache is using to find the file permissions. This has been registered as a bug with Apache, so anyone having the 70008 error with Mod_fcgid, please vote the bug up so it can get some attention
https://issues.apache.org/bugzilla/show_bug.cgi?id=51020 |
|
Back to top |
|