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: Issues with Apache 2.4.9 and PHP 5.6.4 on Server 2012 R2 |
|
Author |
|
tpowers85
Joined: 08 Sep 2016 Posts: 2 Location: US, Gahanna
|
Posted: Wed 14 Sep '16 16:38 Post subject: Issues with Apache 2.4.9 and PHP 5.6.4 on Server 2012 R2 |
|
|
I am new to running Apache and definitely new to running Apache on Windows. My Apache service keeps crashing and I all I get is the error message below. I was also wondering if only mpm_winnt_module setting are used or if other setting will be used if they are not commented out ex. mpm_worker_module. I would appreciate any help.
Faulting application name: httpd.exe, version: 2.4.9.0, time stamp: 0x53258cd5
Faulting module name: php5ts.dll, version: 5.6.4.0, time stamp: 0x5491fac6
Exception code: 0xc0000005
Fault offset: 0x0000000000013e4d
Faulting process id: 0x22c0
Faulting application start time: 0x01d20e8cb8d79a3a
Faulting application path: E:\apache24\bin\httpd.exe
Faulting module path: E:\php\php5ts.dll
Report Id: 16fa2926-7a80-11e6-942d-005056887e86
Faulting package full name:
Faulting package-relative application ID: |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 19 Sep '16 14:33 Post subject: |
|
|
PHP crashes your server.
Turn on in your php.ini
display_startup_errors = On
log_errors = On
error_log = C:\php5\php_errors.log
To find out what error crashes your server it is recommended to disable all extension in your php.ini
Enable it one by one and see what module / extension crashes your server.
However it is better to use php not as module in apache, but over mod_fcgid. |
|
Back to top |
|
|
|
|
|
|