Vaibhav Gole
Vaibhav Gole

Reputation: 165

Apache HTTP Server has stopped working in Xampp

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 

Upvotes: 4

Views: 20429

Answers (3)

user8050078
user8050078

Reputation: 106

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>

Upvotes: 9

Nikolay Yenbakhtov
Nikolay Yenbakhtov

Reputation: 443

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.

Upvotes: 2

Nikolay Yenbakhtov
Nikolay Yenbakhtov

Reputation: 443

This happens because of errors in you java code.

First of all check your tomcat or GlassFish logs.

Then just debug your code, and you will find your problem.

Upvotes: 1

Related Questions