a script stop without any error message

Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default a script stop without any error message

    Hi All,

    I have a php script. It checks more 10k phone numbers, for each
    of the numbers it will send the it to a remote host for validation
    and write the result to a local file. On one server (an in-house built
    Linux) it is running perfect. However, on another server (RH 9) it's
    hehave is very strange: it will stop at a phone number between the
    900th to 1000th without any error message (it stops at after the
    900th but before the 1000th phone number), looks like a natural
    stop. I am thinking it might be the case that the script received a
    stop signal from the system. - I have no idea, but just guess. I am
    not a UNIX people. I think in this group maybe someone can give
    a hand. Thanks in advance!

    Alex
    Alex Shi Guest

  2. Similar Questions and Discussions

    1. ActivePerl error message? Router script. Please help.Newbie
      Hi, I have installed ActivePerl on Windows XP SP2 professional and have tried running a script to restart my router: it always gives out this...
    2. A script stops halfway before the supposed natural end without any error/warning message
      Hi All, I have a php script running on shell. Basically it checks more than 10k phone numbers one by one in a loop way. It will send each of the...
    3. how can i stop this script of giving me points ????
      someone help me please!!! this is a script of grag and drop tis scripts checks if i drag it correct and gives me 10 points in a correct answer ...
    4. Stop script after Cancelling Action
      Hi, please apologize in case my question was already discussed, I'm pretty new to FMPro. I have a simple script with a unique action, . When run, a...
    5. HELP! Message Window Won't Stop
      I just accidentally did a put statement for a list with hundreds of thousands of items. I tried ctrl-period, ctrl-break, and zero on the number pad...
  3. #2

    Default Re: a script stop without any error message

    In article <V50Lc.7971$cg3.6768@nntp-post.primus.ca>, Alex Shi wrote:
    > Hi All,
    >
    > I have a php script. It checks more 10k phone numbers, for each
    > of the numbers it will send the it to a remote host for validation
    > and write the result to a local file. On one server (an in-house built
    > Linux) it is running perfect. However, on another server (RH 9) it's
    > hehave is very strange: it will stop at a phone number between the
    > 900th to 1000th without any error message (it stops at after the
    > 900th but before the 1000th phone number), looks like a natural
    > stop. I am thinking it might be the case that the script received a
    > stop signal from the system. - I have no idea, but just guess. I am
    > not a UNIX people. I think in this group maybe someone can give
    > a hand. Thanks in advance!
    >
    > Alex
    You should probably post to PHP group... BUT, I suspect this is a PHP time or
    size limit. Check the php.ini file on both systems (or the output of phpinfo()
    if you don't have access to the INI files).

    You might 1st look at the max_execution_time setting...

    Kevin
    Kevin Collins 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