EasyPHPScripts.com      Free Open Source PHP Scripts and Code Snippet Library

 +Menu
+   Site News
+   Main Pages
+   Other Downloads
 +PHP
+ Arrays (9)
+ Directory And Files (7)
+ Image (3)
+ LDAP (3)
+ MySQL (11)
+ Other (11)
+ Regular Expressions (3)
+ String Manipulation (13)
+ Time and Date (6)
 +Library Options
+   View Other Library
 +General Options
+   Log in

Main Pages

Downlaods -|- Contact
Home
EasyPHPNews
EasyPHPTabs
EasyPHPTemplate
EasyPHPEdit
Flat file CMS
EasyPHPCashe
EasyPHPNews Discussions
Fix Vista PHP CLI Errors
Contact
I searched all over the net for days trying to turn off this stupid pop up error when i use php in cmd.
try many things to no avail. reg entrys to turning off services and many other things people said to do. not one worked.
i did figure a work around for now due to Microsoft support says the program is at fault and remove it, their referance was to system restore and uninstall (worked fine for years in XP), when in fact it just exits. they will not provide info on how to disable WerFault.exe, it appears.
it needs an ignor this program forever checkbox.

I saw many people trying to shut this off for all kind of programs, i still have issues with EQ, but since i do a lot in php spawning children, it gets crazy hitting close on 100+ errors
I did figure a way to work around in php for now.
i put a kill pid in the php pages. can be done via php.ini, auto prepend file or add to config since all my command line php uses the same one.
i put the kill.exe (in downloads KILL_pid.zip") in windows dir,. just for the path, easy to find it for windows.

function php_exit(){
  system("kill.exe ".getmypid());
}
register_shutdown_function('php_exit');

Downlaods
Powered By PHP
 
Powered by: PHP & centOS