Apache works but the page does not load - php

I have installed on my PC: Apache 2.4.9, PHP 5.4.0, MySQL 5.5.
So I did not get any mistakes from Apache or PHP but, when I'm trying to load my local projects something wrong. Sometimes projects run, but sometimes Web page is not available.
Sometimes localhost working other not working. I don't know how to solve this problem, I didn't get mistake on my logs/error.
So anybody know what is this? I can put here any information if need.
This what logs show me.
[Wed Apr 30 11:12:02.765532 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00428: Parent: child process 5960 exited with status 255 -- Restarting.
[Wed Apr 30 11:12:02.877538 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00455: Apache/2.4.9 (Win64) PHP/5.4.0 configured -- resuming normal operations
[Wed Apr 30 11:12:02.877538 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00456: Apache Lounge VC10 Server built: Mar 17 2014 12:11:31
[Wed Apr 30 11:12:02.877538 2014] [core:notice] [pid 3748:tid 584] AH00094: Command line: 'C:\server\Apache24\bin\httpd.exe -d C:/server/Apache24'
[Wed Apr 30 11:12:02.879538 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00418: Parent: Created child process 5964
[Wed Apr 30 11:12:03.332564 2014] [mpm_winnt:notice] [pid 5964:tid 524] AH00354: Child: Starting 64 worker threads.
[Wed Apr 30 11:12:03.556577 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00428: Parent: child process 5964 exited with status 255 -- Restarting.
[Wed Apr 30 11:12:03.695585 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00455: Apache/2.4.9 (Win64) PHP/5.4.0 configured -- resuming normal operations
[Wed Apr 30 11:12:03.695585 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00456: Apache Lounge VC10 Server built: Mar 17 2014 12:11:31
[Wed Apr 30 11:12:03.695585 2014] [core:notice] [pid 3748:tid 584] AH00094: Command line: 'C:\server\Apache24\bin\httpd.exe -d C:/server/Apache24'
[Wed Apr 30 11:12:03.696585 2014] [mpm_winnt:notice] [pid 3748:tid 584] AH00418: Parent: Created child process 1808 [Wed Apr 30**strong text**

Related

PHP 7, huge array not loading

Alright, I use WAMP and I have this massive array. When using PHP 5.6.40, it loads no problem. When using PHP 7.4.0, the page does not load and I get this error: ERR_CONNECTION_RESET. Then I reduce my array to a few lines and it loads then. What's the problem? I am very much sure there is no incorrect syntax in my code. Any ideas? Please share
Apache error log:
[Sat Jul 11 10:07:00.171208 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00428: Parent: child process 12132 exited with status
3221225725 -- Restarting.
[Sat Jul 11 10:07:00.296215 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00455: Apache/2.4.41 (Win64) PHP/7.4.0 configured -- resuming
normal operations
[Sat Jul 11 10:07:00.296215 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00456: Apache Lounge VS16 Server built: Aug 9 2019 16:46:32
[Sat Jul 11 10:07:00.296215 2020] [core:notice] [pid 10472:tid 416]
AH00094: Command line:
'c:\wamp64\bin\apache\apache2.4.41\bin\httpd.exe -d
C:/wamp64/bin/apache/apache2.4.41'
[Sat Jul 11 10:07:00.298216 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00418: Parent: Created child process 9976
[Sat Jul 11 10:07:01.231269 2020] [mpm_winnt:notice] [pid 9976:tid
332] AH00354: Child: Starting 64 worker threads.
[Sat Jul 11 10:07:01.831303 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00428: Parent: child process 9976 exited with status 3221225725
-- Restarting.
[Sat Jul 11 10:07:01.971311 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00455: Apache/2.4.41 (Win64) PHP/7.4.0 configured -- resuming
normal operations
[Sat Jul 11 10:07:01.972311 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00456: Apache Lounge VS16 Server built: Aug 9 2019 16:46:32
[Sat Jul 11 10:07:01.972311 2020] [core:notice] [pid 10472:tid 416]
AH00094: Command line:
'c:\wamp64\bin\apache\apache2.4.41\bin\httpd.exe -d
C:/wamp64/bin/apache/apache2.4.41'
[Sat Jul 11 10:07:01.974311 2020] [mpm_winnt:notice] [pid 10472:tid
416] AH00418: Parent: Created child process 10388
[Sat Jul 11 10:07:02.813359 2020] [mpm_winnt:notice] [pid 10388:tid
332] AH00354: Child: Starting 64 worker threads.
If you are confident that you have allocated enough memory, you can also try increasing the stack size in the Apache config. For example like so:
<IfModule mpm_winnt_module>
ThreadStackSize 6553600
</IfModule>

PHP new SoapClient causing Apache crash

I am trying to setup a SoapClient in my PHP but it keeps crashing Apache
Here is my PHP:
try{
$o_soap = #new \SoapClient(
"local/path/to/my/wsdl.xml",
array(
'exceptions' => true
)
);
var_dump($o_soap->__getFunctions());
}
catch(SoapFault $e){
die($e->faultstring);
}
Here is the Apache Log:
[Wed Mar 15 11:26:57.422962 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00428: Parent: child process 8780 exited with status 3221225477 -- Restarting.
[Wed Mar 15 11:26:58.030023 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00455: Apache/2.4.12 (Win32) configured -- resuming normal operations
[Wed Mar 15 11:26:58.030023 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00456: Apache Lounge VC11 Server built: Mar 20 2015 12:12:41
[Wed Mar 15 11:26:58.030023 2017] [core:notice] [pid 7516:tid 516] AH00094: Command line: 'httpd.exe -d C:/WEB/Apache24_32bit'
[Wed Mar 15 11:26:58.035024 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00418: Parent: Created child process 9432
[Wed Mar 15 11:27:00.031223 2017] [mpm_winnt:notice] [pid 9432:tid 532] AH00354: Child: Starting 150 worker threads.
[Wed Mar 15 11:27:02.336454 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00428: Parent: child process 9432 exited with status 3221225477 -- Restarting.
[Wed Mar 15 11:27:03.045678 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00455: Apache/2.4.12 (Win32) configured -- resuming normal operations
[Wed Mar 15 11:27:03.045678 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00456: Apache Lounge VC11 Server built: Mar 20 2015 12:12:41
[Wed Mar 15 11:27:03.045678 2017] [core:notice] [pid 7516:tid 516] AH00094: Command line: 'httpd.exe -d C:/WEB/Apache24_32bit'
[Wed Mar 15 11:27:03.061278 2017] [mpm_winnt:notice] [pid 7516:tid 516] AH00418: Parent: Created child process 9784
[Wed Mar 15 11:27:05.030913 2017] [mpm_winnt:notice] [pid 9784:tid 528] AH00354: Child: Starting 150 worker threads.
WSDL has been checked on https://www.wsdl-analyzer.com and returned no errors.
Update
Looks like it comes from the WSDL... I tried another (smaller) one and got the expected result...
Update 2
Solved using nusoap library

Apache Stop Working - AH00428 -- Restarting

I need help.
I can not solve this problem.
My configs:
Intel Core I5 - 3,2 GHz
8 GB RAM
Windows 7 Enterprise x64 SP1
Versions:
httpd-2.4.23-win32-VC11
php-5.6.24-Win32-VC11-x86
instantclient-basic-win32-11.2.0.1.0
php_oci8-2.0.8-5.6-ts-vc11-x86.zip
What happens is that, I start the service without any error.
But when I open a page that contains PHP, the Apache resets (AH00428: Parent: child process 4608 exited with status 3958377386 -- Restarting.).
Windows returns me the error message: "Apache HTTPD Server stopped working."
Follow the apache error.log:
[Tue Aug 16 09:35:22.320400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00455: Apache/2.4.23 (Win32) configured -- resuming normal operations
[Tue Aug 16 09:35:22.320400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00456: Apache Lounge VC11 Server built: Jul 7 2016 11:13:22
[Tue Aug 16 09:35:22.320400 2016] [core:notice] [pid 4864:tid 616] AH00094: Command line: 'httpd.exe -d C:/Apache24'
[Tue Aug 16 09:35:22.336400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00418: Parent: Created child process 4608
[Tue Aug 16 09:35:22.914400 2016] [mpm_winnt:notice] [pid 4608:tid 632] AH00354: Child: Starting 64 worker threads.
[Tue Aug 16 09:35:50.895400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00428: Parent: child process 4608 exited with status 3958377386 -- Restarting.
[Tue Aug 16 09:35:51.035400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00455: Apache/2.4.23 (Win32) configured -- resuming normal operations
[Tue Aug 16 09:35:51.035400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00456: Apache Lounge VC11 Server built: Jul 7 2016 11:13:22
[Tue Aug 16 09:35:51.035400 2016] [core:notice] [pid 4864:tid 616] AH00094: Command line: 'httpd.exe -d C:/Apache24'
[Tue Aug 16 09:35:51.051400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00418: Parent: Created child process 5172
[Tue Aug 16 09:35:51.661400 2016] [mpm_winnt:notice] [pid 5172:tid 632] AH00354: Child: Starting 64 worker threads.
[Tue Aug 16 09:35:52.388400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00428: Parent: child process 5172 exited with status 3958377386 -- Restarting.
[Tue Aug 16 09:35:52.491400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00455: Apache/2.4.23 (Win32) configured -- resuming normal operations
[Tue Aug 16 09:35:52.491400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00456: Apache Lounge VC11 Server built: Jul 7 2016 11:13:22
[Tue Aug 16 09:35:52.491400 2016] [core:notice] [pid 4864:tid 616] AH00094: Command line: 'httpd.exe -d C:/Apache24'
[Tue Aug 16 09:35:52.506400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00418: Parent: Created child process 1120
[Tue Aug 16 09:35:53.062400 2016] [mpm_winnt:notice] [pid 1120:tid 628] AH00354: Child: Starting 64 worker threads.
Apache server interrupted...
[Tue Aug 16 09:36:22.150400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00422: Parent: Received shutdown signal -- Shutting down the server.
[Tue Aug 16 09:36:24.151400 2016] [mpm_winnt:notice] [pid 1120:tid 628] AH00364: Child: All worker threads have exited.
[Tue Aug 16 09:36:24.214400 2016] [mpm_winnt:notice] [pid 4864:tid 616] AH00430: Parent: Child process 1120 exited successfully.
access.log is empty.
I can not fix this.
Any tips?
Thanks.
Edit
I looked at windows event log and found this:
Application Error
EventRecordID 72126
Channel Application
EventData:
httpd.exe
2.4.23.0
577e1b96
KERNELBASE.dll
6.1.7601.18229
51fb1116
ebf00baa
0000c41f
e2c
01d1f7de4709ca89
C:\Apache24\bin\httpd.exe
C:\WINDOWS\syswow64\KERNELBASE.dll
9238afff-63d1-11e6-bca1-641c67645206
I managed to solve the problem.
I disable all PHP extensions and looked at the windows event log.
Was giving error as follows:
Application name: httpd.exe, version: 2.4.23.0
Module: php5apache2_4.dll, versão: 0.0.0.0
Exception Code: 0xc0000005
Application path failed: C:\Apache24\bin\httpd.exe
Fault module path: C:\PHP\php5apache2_4.dll
Report Identification: cae5d4a7-6486-11e6-bca1-641c67645206
I deleted the PHP folder, wiped the register, downloaded again, and enabled the extensions needed.
And now is functioning normally.

unexpected "The connection was reset" , on page reload

When I accessing zf2 application,it shows "The connection was reset" on browser ! . Sometime it shows this message in bowers and sometimes it not !
The following are my technologies, I used to build application .
Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4
PHP Version 5.4.4
Xampp
Zend Framework 2
error.log contents after clearing, and restarted apache
[Tue Apr 09 15:33:25.956011 2013] [core:warn] [pid 9664:tid 252] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 09 15:33:26.343034 2013] [ssl:warn] [pid 9664:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:33:26.388036 2013] [mpm_winnt:notice] [pid 9664:tid 252] AH00455: Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 configured -- resuming normal operations
[Tue Apr 09 15:33:26.388036 2013] [mpm_winnt:notice] [pid 9664:tid 252] AH00456: Server built: May 13 2012 14:10:15
[Tue Apr 09 15:33:26.388036 2013] [core:notice] [pid 9664:tid 252] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Tue Apr 09 15:33:26.390036 2013] [mpm_winnt:notice] [pid 9664:tid 252] AH00418: Parent: Created child process 6904
AH00548: NameVirtualHost has no effect and will be removed in the next release D:/xampp/apache/conf/extra/httpd-vhosts.conf:19
[Tue Apr 09 15:33:27.640108 2013] [ssl:warn] [pid 6904:tid 264] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:33:27.687110 2013] [mpm_winnt:notice] [pid 6904:tid 264] AH00354: Child: Starting 150 worker threads.
[Tue Apr 09 15:34:36.488046 2013] [core:warn] [pid 7260:tid 252] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 09 15:34:42.367382 2013] [core:warn] [pid 4036:tid 252] AH00098: pid file D:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Tue Apr 09 15:34:42.821408 2013] [ssl:warn] [pid 4036:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:34:42.866410 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00455: Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 configured -- resuming normal operations
[Tue Apr 09 15:34:42.866410 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00456: Server built: May 13 2012 14:10:15
[Tue Apr 09 15:34:42.866410 2013] [core:notice] [pid 4036:tid 252] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Tue Apr 09 15:34:42.867410 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00418: Parent: Created child process 6012
AH00548: NameVirtualHost has no effect and will be removed in the next release D:/xampp/apache/conf/extra/httpd-vhosts.conf:19
[Tue Apr 09 15:34:44.070479 2013] [ssl:warn] [pid 6012:tid 264] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:34:44.117482 2013] [mpm_winnt:notice] [pid 6012:tid 264] AH00354: Child: Starting 150 worker threads.
[Tue Apr 09 15:34:52.011933 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00428: Parent: child process exited with status 3221225477 -- Restarting.
[Tue Apr 09 15:34:52.481960 2013] [ssl:warn] [pid 4036:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:34:52.527963 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00455: Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 configured -- resuming normal operations
[Tue Apr 09 15:34:52.527963 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00456: Server built: May 13 2012 14:10:15
[Tue Apr 09 15:34:52.527963 2013] [core:notice] [pid 4036:tid 252] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Tue Apr 09 15:34:52.528963 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00418: Parent: Created child process 9964
AH00548: NameVirtualHost has no effect and will be removed in the next release D:/xampp/apache/conf/extra/httpd-vhosts.conf:19
[Tue Apr 09 15:34:53.731032 2013] [ssl:warn] [pid 9964:tid 264] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:34:53.783035 2013] [mpm_winnt:notice] [pid 9964:tid 264] AH00354: Child: Starting 150 worker threads.
[Tue Apr 09 15:34:59.654371 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00428: Parent: child process exited with status 3221225477 -- Restarting.
[Tue Apr 09 15:35:00.219403 2013] [ssl:warn] [pid 4036:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:35:00.267406 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00455: Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 configured -- resuming normal operations
[Tue Apr 09 15:35:00.267406 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00456: Server built: May 13 2012 14:10:15
[Tue Apr 09 15:35:00.267406 2013] [core:notice] [pid 4036:tid 252] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Tue Apr 09 15:35:00.268406 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00418: Parent: Created child process 9552
AH00548: NameVirtualHost has no effect and will be removed in the next release D:/xampp/apache/conf/extra/httpd-vhosts.conf:19
[Tue Apr 09 15:35:01.506477 2013] [ssl:warn] [pid 9552:tid 264] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:35:01.553479 2013] [mpm_winnt:notice] [pid 9552:tid 264] AH00354: Child: Starting 150 worker threads.
[Tue Apr 09 15:35:03.754605 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00428: Parent: child process exited with status 3221225477 -- Restarting.
[Tue Apr 09 15:35:04.245633 2013] [ssl:warn] [pid 4036:tid 252] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Apr 09 15:35:04.290636 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00455: Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 configured -- resuming normal operations
[Tue Apr 09 15:35:04.290636 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00456: Server built: May 13 2012 14:10:15
[Tue Apr 09 15:35:04.290636 2013] [core:notice] [pid 4036:tid 252] AH00094: Command line: 'd:\\xampp\\apache\\bin\\httpd.exe -d D:/xampp/apache'
[Tue Apr 09 15:35:04.291636 2013] [mpm_winnt:notice] [pid 4036:tid 252] AH00418: Parent: Created child process 9232
Please help !

PHP files won't run on new xampp installation

Apache appears to be running OK and when I go into the xampp control panel I can check phpinfo() and everything shows up just fine. When I try to open up any php files in my browser the page is blank.
Here is my Apache error log
[Wed Aug 29 07:07:19.160419 2012] [ssl:warn] [pid 280:tid 376] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Wed Aug 29 07:07:19.768831 2012] [mpm_winnt:notice] [pid 280:tid 376] AH00455: Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 configured -- resuming normal operations
[Wed Aug 29 07:07:19.768831 2012] [mpm_winnt:notice] [pid 280:tid 376] AH00456: Server built: May 13 2012 14:10:15
[Wed Aug 29 07:07:19.768831 2012] [core:notice] [pid 280:tid 376] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Wed Aug 29 07:07:19.768831 2012] [mpm_winnt:notice] [pid 280:tid 376] AH00418: Parent: Created child process 424
[Wed Aug 29 07:07:20.673648 2012] [ssl:warn] [pid 424:tid 268] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Wed Aug 29 07:07:20.767250 2012] [mpm_winnt:notice] [pid 424:tid 268] AH00354: Child: Starting 150 worker threads.
[Wed Aug 29 07:18:17.441000 2012] [mpm_winnt:notice] [pid 280:tid 376] AH00422: Parent: Received shutdown signal -- Shutting down the server.
[Wed Aug 29 07:19:34.371074 2012] [core:warn] [pid 1608:tid 376] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Wed Aug 29 07:19:35.104275 2012] [ssl:warn] [pid 1608:tid 376] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Wed Aug 29 07:19:38.193080 2012] [mpm_winnt:notice] [pid 1608:tid 376] AH00455: Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 configured -- resuming normal operations
[Wed Aug 29 07:19:38.224280 2012] [mpm_winnt:notice] [pid 1608:tid 376] AH00456: Server built: May 13 2012 14:10:15
[Wed Aug 29 07:19:38.224280 2012] [core:notice] [pid 1608:tid 376] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[Wed Aug 29 07:19:38.317881 2012] [mpm_winnt:notice] [pid 1608:tid 376] AH00418: Parent: Created child process 2812
[Wed Aug 29 07:19:40.221084 2012] [ssl:warn] [pid 2812:tid 268] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[Wed Aug 29 07:19:40.252284 2012] [mpm_winnt:notice] [pid 2812:tid 268] AH00354: Child: Starting 150 worker threads.
Are you using Windows 7
Windows 7 has webserver which uses Port 80
so apache might not be running.
Check if port 80 is being used
To change port no of Xampp apache check this link
Xampp server port
I had this happen to a working installation and it turned out that Skype was running and blocking the normal port I used.

Categories