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');
|