When I start a script like this :

  $fp = fsockopen($host, $port, $errno, $errstr, 30);
  if ($fp) {
   $fputs_str  = "GET ".$path." HTTP/1.1\r\n";
   $fputs_str .= "Host: ".$host."\r\n";
   $fputs_str .= "\r\n";
      fputs($fp, $fputs_str);
   fclose($fp);
  }

The script will run for some time. But then ends. I have set
 set_time_limit(0);
 ignore_user_abort(1);
but the script does not run through.

What can I do ?
--
[ www.eksperten.dk ] Scandinavias biggest IT forum.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to