'exec' creates popup windows I don't want to see

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default 'exec' creates popup windows I don't want to see

    Wise ones,

    I'm running php under apache (I'm using the uniserv distribution) on
    Windows XP. Every time I execute an external command using backticks
    or exec or system, I get a cmd windows that pops up for the 1/4 second
    the command executes.

    This would all be fine, except that I'm deploying the server to run
    locally on the user's box, and needless to say, the popups are
    annoying. I've search everything I'm clever enough to understand and
    can't find a way to get the external commands to run in the
    'background'. All of the input and output of the commands have been
    redirected, any shell command causes this behavious, and in all other
    respects it all seems to work great.

    Any ideas?

    Thank you very very much for the time.

    Tony
    Tony Guest

  2. Similar Questions and Discussions

    1. PHP v4.0.2 and exec() in Windows 2000 / IIS
      Are there any tricks to getting the exec() function to work under Windows 2000 with IIS? PHP v4.0.2 is installed on the server. Thanks, WOMD
    2. Help! Popup Menu Creates 1 Pixel Row/Column When Exported
      Does anyone have a good solution to eliminating the one pixel row that Fireworks creates when exporting a popup menu? I have a menu that fits into...
    3. How to return a keyvalue from popup windows with datagrid control to parent windows through JavaScript?
      How to return a keyvalue from popup windows with datagrid control to parent windows through JavaScript?
    4. system, `` or exec on Windows?
      Ronald Pijnacker wrote: Can't answer all your questions, but I'll share what I got. First, see http://ruby-talk.com/10006 for some replacement...
    5. exec in background on Windows
      Folks: How can I get an /exec'ed/ process to run in the background on an XP box? I have a monitor-like process which I am starting as...
  3. #2

    Default Re: 'exec' creates popup windows I don't want to see


    "Tony" <aglamarca@yahoo.com> wrote in message
    news:ba845054.0307181008.449114b@posting.google.co m...
    > Wise ones,
    >
    > I'm running php under apache (I'm using the uniserv distribution) on
    > Windows XP. Every time I execute an external command using backticks
    > or exec or system, I get a cmd windows that pops up for the 1/4 second
    > the command executes.
    >
    > This would all be fine, except that I'm deploying the server to run
    > locally on the user's box, and needless to say, the popups are
    > annoying. I've search everything I'm clever enough to understand and
    > can't find a way to get the external commands to run in the
    > 'background'. All of the input and output of the commands have been
    > redirected, any shell command causes this behavious, and in all other
    > respects it all seems to work great.
    >
    > Any ideas?
    >
    > Thank you very very much for the time.
    >
    > Tony
    system() works fine for me


    Leslie Hoare Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139