Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache HTTP Server has stopped working in Xampp

Tags:

php

apache

tomcat

I am using LiteCart opensource e-commerce platform. When i run xampp server, apache and mysql server starts without any error and warning. But when i open browser and hit the url to open my installed litecart application it gives me an error

enter image description here

I also checked for online solution but nothing happened. Can anyone will help me in this.

Problem details:

Problem Event Name: APPCRASH 
Application Name: httpd.exe 
Application Version: 2.4.17.0 
Application Timestamp: 561cc534 
Fault Module Name: php5ts.dll 
Fault Module Version: 5.5.37.0 
Fault Module Timestamp: 576b2166 
Exception Code: c00000fd 
Exception Offset: 0005a5ba 
OS Version: 6.1.7601.2.1.0.256.48 
Locale ID: 1033 
Additional Information 1: 64c6 
Additional Information 2: 64c64714e3c644daeb62f47ad597dc84 
Additional Information 3: 36e8 Additional 
Information 4: 36e8add2564fc225e8a656ba7214b7ab 
like image 709
Vaibhav Gole Avatar asked Dec 18 '22 11:12

Vaibhav Gole


2 Answers

To fix this problem:

  1. Stop the Apache web server from the XAMPP control panel

  2. Choose httpd.conf from config menu on XAMPP control panel

  3. Insert this code to the end of the file:

<IfModule mpm_winnt_module>
  ThreadStackSize 8388608
</IfModule>
like image 168
user8050078 Avatar answered Jan 05 '23 04:01

user8050078


I guess, It's a memory problem.

Search “memory_limit” in your php.ini, and change the value of it.

If no “memory_limit” found, add the following line at the end of php.ini:

memory_limit = 128M ; /* Change the 128M to your needs */

Save file.

Restart Apache.

like image 34
Nikolay Yenbakhtov Avatar answered Jan 05 '23 04:01

Nikolay Yenbakhtov