Apache 2.2.10 and PHP 5.2.6

Shadow121

Member
Messages
901
Reaction score
0
Points
16
I tried to start Apache but it keeps failing. I used the MSI Installer from the website and did the right things but I keep getting the error above and in the event viewer the following:

Code:
Faulting application httpd.exe, version 2.2.10.0, faulting module php_iisfunc.dll, version 5.2.6.6, fault address 0x00001085.

For more information, see Help and Support Center at

Code:
Faulting application httpd.exe, version 2.2.10.0, faulting module php5ts.dll, version 5.2.6.6, fault address 0x0009b74e.

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
 

crisp

New Member
Messages
85
Reaction score
0
Points
0
Always helpful with windows error messages to search (google/whatever) on the actual fault address, a search on 'fault address 0x00001085' threw up this as first result.

http://forums.devnetwork.net/viewtopic.php?f=31&t=73509

Scroll down and you'll find info about commenting out any extensions you don't need. The iisfunc.dll is definitely an extension you don't need with PHP running under Apache.
 

Shadow121

Member
Messages
901
Reaction score
0
Points
16
Solved that one, now i'm just getting 0x0009b74e but when I google it i only get the x10 page.
 

crisp

New Member
Messages
85
Reaction score
0
Points
0
Solved that one, now i'm just getting 0x0009b74e but when I google it i only get the x10 page.

You need to check your php.ini file, and the httpd.conf file for apache, it would seem to be the case that php isn't getting loaded correctly, which suggests mis-configuration in one of those files. Without knowing your setup, or what you have configured, it's difficult to make a diagnosis, maybe post (or better, attach) those files here then we can get a look at them.

Also worth a look in event viewer for any more meaningful errors, which you may want to post as well.
 
Top