Re: [PHP] Basic question - Starting a background task without waiting for its end.

2007-01-02 Thread Richard Lynch
You can try tacking a "&" at the end to fork the Notepad opening...

It may or may not work depending on a bunch of factors.

Don't be surprised if it "works" and makes your Windows box even more
unstable than it already way, and you get random crashes from this.

Thread-safety within PHP extensions is not guaranteed, and don't even
ask about Notepad and thread safety...

Note that it could work fine for YEARS and then you un-comment an
un-threadsafe extension in php.ini and Bam! the whole thing starts
crashing at random points for no obvious reason.

On Sun, December 31, 2006 10:18 am, Michel wrote:
>
> I (very simply) try to open a "notepad" on a simple text file in a
> simplistic PHP script, and would like to go on and display the next
> page
> without waiting for this notepad to be shut.
>
> After various attempts, I have used an :
>
> exec ('bash -c cmd /C start /MAX notepad "my_file" > NUL');
>
> ... but it still wait for the shutting of the notepad ..!
>
> Could anybody help me ?
>
> For clarification :
> 1) I use this script on a machine which is in the same time "server"
> and
> "client", which gives "meaning" to this operation.
> 2) I use "bash -c" because I have the cygwin platform which can easily
> initiate tasks in background, but it could be suppressed, because it
> "de
> facto" changes nothing...
>
> Thank's for help.
>
> Michel.
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Some people have a "gift" link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Basic question - Starting a background task without waiting for its end.

2007-01-01 Thread Martin Alterisio

2006/12/31, Michel <[EMAIL PROTECTED]>:



I (very simply) try to open a "notepad" on a simple text file in a
simplistic PHP script, and would like to go on and display the next page
without waiting for this notepad to be shut.

After various attempts, I have used an :

exec ('bash -c cmd /C start /MAX notepad "my_file" > NUL');

... but it still wait for the shutting of the notepad ..!

Could anybody help me ?

For clarification :
1) I use this script on a machine which is in the same time "server" and
"client", which gives "meaning" to this operation.
2) I use "bash -c" because I have the cygwin platform which can easily
initiate tasks in background, but it could be suppressed, because it "de
facto" changes nothing...

Thank's for help.

Michel.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Have you tried the following?

exec ('bash -c cmd /C start /MAX notepad "my_file" > NUL &');


Re: [PHP] Basic question - Starting a background task without waiting for its end.

2006-12-31 Thread Jochem Maas
Michel wrote:
> 
> I (very simply) try to open a "notepad" on a simple text file in a
> simplistic PHP script, and would like to go on and display the next page
> without waiting for this notepad to be shut.
> 
> After various attempts, I have used an :
> 
> exec ('bash -c cmd /C start /MAX notepad "my_file" > NUL');
> 
> ... but it still wait for the shutting of the notepad ..!

interesting question, I didn't really come up with an answer (maybe someone 
with real voodoo
powers know the 'proper' answer) but I did find this page (which hopefully 
provides
a useful work around [all kudos to the guy named Mike]):

http://www.naken.cc/mikehup.php

> 
> Could anybody help me ?
> 
> For clarification :
> 1) I use this script on a machine which is in the same time "server" and
> "client", which gives "meaning" to this operation.
> 2) I use "bash -c" because I have the cygwin platform which can easily
> initiate tasks in background, but it could be suppressed, because it "de
> facto" changes nothing...
> 
> Thank's for help.
> 
> Michel.
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Basic question - Starting a background task without waiting for its end.

2006-12-31 Thread Michel


I (very simply) try to open a "notepad" on a simple text file in a 
simplistic PHP script, and would like to go on and display the next page 
without waiting for this notepad to be shut.


After various attempts, I have used an :

exec ('bash -c cmd /C start /MAX notepad "my_file" > NUL');

... but it still wait for the shutting of the notepad ..!

Could anybody help me ?

For clarification :
1) I use this script on a machine which is in the same time "server" and 
"client", which gives "meaning" to this operation.
2) I use "bash -c" because I have the cygwin platform which can easily 
initiate tasks in background, but it could be suppressed, because it "de 
facto" changes nothing...


Thank's for help.

Michel.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php