up vote 5 down vote favorite
share [g+] share [fb]

I recently installed Windows 7 on my desktop and the following problem has begun occuring:

I regularly run some PHP scripts from the commandline that are now giving this error in a popup window:

CLI has stopped working.

I cancel this and my script terminates. Not good...

I've googled around and tried most of the few ideas suggested but still i am plagued by this annoyance. Right now it appears to regularly occur when I do a file_get_contents() of a url pointing to an image file. Only happens when the url is http protocol, works fine for ftp files. It also happens spuriously doing other things as well.

This is PHP 5.3.0 as distributed in a xampp 1.7.2 .zip. All exe's and dll's have been unblocked by copying thru FAT32 and back.

hints from anyone who's cracked this would be most helpful.

link|improve this question

59% accept rate
1  
Interesting one, I just searched the PHP bug database and couldn't find anything there either. It might worth reporting it at bugs.php.net – RMcLeod Nov 4 '09 at 9:22
Is there any reason why you wouldn't use CURL instead? I know the amount of initial setup is a bit tedious, but it may work better than your experience. – Kevin Peno Nov 5 '09 at 6:23
Do you notice any difference i using VC6 vs VC9 PHP versions? windows.php.net/download – Kevin Peno Nov 5 '09 at 8:22
I get the problem with all 4 variants of PHP 5.3.0 (VC6/VC9/TS/NTS). Even when freshly installed... – Scott Evernden Nov 10 '09 at 18:58
feedback

4 Answers

up vote 1 down vote accepted

Try updating your PHP version bundled with xampp. You might have to update some php_XXX.dll extension files.

More info: http://web2.0entrepreneur.com/31/cli-has-stopped-working-on-windows-vista.html

link|improve this answer
1  
Note that this error seems to be popular with XAMPP. There is nothing better than a manual PHP, Apache & MySQL installation IMHO. – Patrick Allaert Nov 5 '09 at 7:00
I've had this issue under windows vista/7 as well with scripts that run longer than a couple minutes using nothing but the php install available from php. My guess is that the windows version is probably suffering from some .Net v4 growing pains. – Kevin Peno Nov 5 '09 at 8:21
Thanks Patrick - I think I may do just what you've suggested and dump xampp & just install those pieces I need. I'll check back let you know if that solves this – Scott Evernden Nov 5 '09 at 16:34
feedback

The solution for me was to stop using PHP 5.3.0 and go back to 5.2.11. Once I did this the "CLI has stopped working" issue disappeared.

link|improve this answer
feedback

I found that this happened to me when I had the APC extension enabled. I switched to using the Wincache for PHP extension instead.

link|improve this answer
feedback

I have the same issue with Windows 7 Professional. My Apache Server has no problem finding and executing PHP within my web application but the command line execution gives the infamous message "CLI has stopped working." The User Account Settings seem to allow executions. Perl has no problem.

I always have to take my code to an XP machine and run it there to debug it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.