php - Apache crashes on installing Magento extension -
i installing magento extenion on magento loacalhost.i following error , xampp crashes.
problem signature: problem event name: appcrash application name: httpd.exe application version: 2.2.21.0 application timestamp: 4e6b3136 fault module name: php5ts.dll fault module version: 5.3.8.0 fault module timestamp: 4e537a04 exception code: c00000fd exception offset: 0018a7a3 os version: 6.1.7601.2.1.0.256.48 locale id: 1033 additional information 1: e339 additional information 2: e339f2594e7f681a95b166793376bebb additional information 3: ad95 additional information 4: ad95c11efe6aa075e55981fe5bf8d4b5
but if disable extension xampp works well. how fix it?
i found following solution on link appcrash php-error-faulting-module-name-php5ts
go following file c:\xampp\apache\conf\extra\httpd-xampp.conf
set comment on following line.
#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> # # php-cgi setup #
uncomment following line:
<filesmatch "\.php$"> sethandler application/x-httpd-php-cgi </filesmatch> <ifmodule actions_module> action application/x-httpd-php-cgi "/php-cgi/php-cgi.exe" </ifmodule>
if 1 has other solution please share.
Comments
Post a Comment