How to solve apache crash (Fault Module Name:php5ts.dll) [solved]

Problem signature:
  Problem Event Name:    APPCRASH
  Application Name:    httpd.exe
  Application Version:    2.4.4.0
  Application Timestamp:    5128b049
  Fault Module Name:    php5ts.dll
  Fault Module Version:    5.4.16.0
  Fault Module Timestamp:    51af9dd2
  Exception Code:    c0000005
  Exception Offset:    0002c202
  OS Version:    6.1.7601.2.1.0.274.10
  Locale ID:    1033
  Additional Information 1:    0a9e
  Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
  Additional Information 3:    0a9e
  Additional Information 4:    0a9e372d3b4ad19135b953a78882e789


We are running XAMPP on Windows 2012 64bit.  We received APPCRASH every day. I tried lots of solution by but situation is same. After long time I found solution:

SOLUTION: After long time I found solution I changed the configuration and run the PHP in cgi mood.

Open httpd-xampp.conf file in notepad and Change PHP-Module to PHP-CGI mode.
httpd-xampp.conf File location : C:\xampp\apache\conf\extra\httpd-xampp.conf

Set Comment on following line.


#
# PHP-Module setup
#
#LoadFile "D:/xampp/php/php5ts.dll"
#LoadModule php5_module "D:/xampp/php/php5apache2_4.dll"

#<FilesMatch "\.php$">
#    SetHandler application/x-httpd-php
#</FilesMatch>
#<FilesMatch "\.phps$">
#    SetHandler application/x-httpd-php-source
#</FilesMatch>


Uncomment the following line: 
#
# PHP-CGI setup
#
<FilesMatch "\.php$">
    SetHandler application/x-httpd-php-cgi
</FilesMatch>
<IfModule actions_module>
    Action application/x-httpd-php-cgi "/php-cgi/php-cgi.exe"
</IfModule>


After changing this configuration, restart xampp.

SHARE

Ibrar Ansari

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment