Re: [PHP] ignore_user_abort not working

2003-09-17 Thread Curt Zirzow
* Thus wrote Sid ([EMAIL PROTECTED]): > Sorry, a mistake on my part. The script continues to work, but > connection_aborted() does not detect if the host disconnected. It is all > acting very funny. I also kept witing the return from connection_status () > to a file and it keeps witing 0 to the fil

Re: [PHP] ignore_user_abort not working

2003-09-17 Thread Sid
- Original Message - From: "Sid" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: 17 September 2003 Wednesday 1:04 PM Subject: [PHP] ignore_user_abort not working > Hello, > > I am calling ignore_user_abort(true) in one of my scripts, but the script stops

[PHP] ignore_user_abort not working

2003-09-17 Thread Sid
Hello, I am calling ignore_user_abort(true) in one of my scripts, but the script stops just like it would if I did not call it. Any idea why it is not working? Thanks - Sid

[PHP] ignore_user_abort()

2003-08-14 Thread Zygimantas Berziunas
Are there any disadvantages to turn on this feature? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ignore_user_abort()

2003-08-14 Thread Curt Zirzow
* Thus wrote Zygimantas Berziunas ([EMAIL PROTECTED]): > Are there any disadvantages to turn on this feature? It all depends on the application you have. In some cases its an advantage and others a disadvantage. Usually when dealing with credit processing I make sure it is enabled so if the use

Re: [PHP] ignore_user_abort()

2003-08-14 Thread skate
> Are there any disadvantages to turn on this feature? > > what if someone submitted the wrong info? or maybe the wrong credit card details? they genuinely might want to abort. although to be fair, these people are the stupid ones the need to be punished and banned from the PC. i can't think of

[PHP] ignore_user_abort question

2002-07-14 Thread Jose Arce
Hi, got a question. What happend if ignore_user_abort is true, and the user closes the window? Also, i tried, but i push the stop button, and the script stops, shouldn ignore that?. Thx :D _ MSN Fotos: la forma más fácil de compa

Re: [PHP] ignore_user_abort

2002-03-03 Thread Rasmus Lerdorf
Which version of PHP? I just tested it and it works just fine for me. How exactly do you know the script is not finishing? Try a test like this: \n"; flush(); fputs($fp,"Line $i\n"); fflush($fp); sleep(1); } ?> Load up this file. You should see it start wri

[PHP] ignore_user_abort

2002-03-03 Thread Paul Roberts
hi I have a host with ignore_user_abort turned off in php ini. the man says int ignore_user_abort ( [int setting]) so far i have tried 1 and true for the int setting but nothing changed, it still aborted. I want it so the script finishes even the browser conection is lost. anyone know what

[PHP] ignore_user_abort

2001-03-26 Thread Plamen Slavov
Hi all, i have PHP 3.0.12 running on Linux/Apache 1.3.9 platform My problem is ignore_user_abort function. As described in documentatuion if i put in the beginning of my script set_time_limit(0); //no time limit ignore_user_abort(0); the script should terminate when user hits Stop button or leaves