How do I make sure full script gets executed?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Joe Cybernet

    #1

    How do I make sure full script gets executed?

    people keep interrupting my script by pressing their Stop buttons. how can I
    prevent?


  • Alvaro G Vicario

    #2
    Re: How do I make sure full script gets executed?

    *** Joe Cybernet wrote/escribió (Wed, 14 Jan 2004 02:16:04 -0000):[color=blue]
    > people keep interrupting my script by pressing their Stop buttons. how can I
    > prevent?[/color]

    I guess you can't do that with web apps. Actually, even regular apps
    (Eudora, Word, Photoshop...) can always be stopped via task manager.
    Furthermore, there can always be network failures and many other problems.
    So you should rewrite your app to deal with that case.

    Anyway, it if is important I suppose you can use your web app to launch a
    non-interactive script in the background (just like when you type "nohup
    wget www.site.com &" in a Unix command prompt).

    --
    --
    -- Álvaro G. Vicario - Burgos, Spain
    --

    Comment

    • Matthias Esken

      #3
      Re: How do I make sure full script gets executed?

      "Joe Cybernet" <no@no.ie> schrieb:
      [color=blue]
      > people keep interrupting my script by pressing their Stop buttons. how can I
      > prevent?[/color]

      Have a look at the function ignore_user_abo rt().

      Regards,
      Matthias

      Comment

      • Joe Cybernet

        #4
        Re: How do I make sure full script gets executed?

        thanks. that seems to work.

        "Matthias Esken" <muelleimer2003 nospam@usenetve rwaltung.org> wrote in
        message news:bu346h.3bk .1@usenet.esken .de...[color=blue]
        > "Joe Cybernet" <no@no.ie> schrieb:
        >[color=green]
        > > people keep interrupting my script by pressing their Stop buttons. how[/color][/color]
        can I[color=blue][color=green]
        > > prevent?[/color]
        >
        > Have a look at the function ignore_user_abo rt().
        >
        > Regards,
        > Matthias[/color]


        Comment

        Working...