this question ilişkin
Benim komut dosyası temelde iyi çalışır ama bazen fread işlev çağrısı yanıt vermemeye ve başarısızlık nedenini bulmak için görünmüyor olabilir.
private function run_lengthy_job($command, $message) {
for($handle = popen($command, 'r'); !feof($handle); sleep(2)) {
printf("[%s]\t%s\n", time(), $message);
// log the operation
exec(sprintf('logger "%s"',
escapeshellarg(fread($handle, 1024))));
}
pclose($handle);
}
örnek komut
hg clone -v --debug http://some.repository.com/hgwebdir.cgi/some_repo some_repo
Büyük bir depo klonlama iken şimdi için başarısız oluyor. Aynı sorun ben fgets için fread değiştirseniz bile devam etmektedir.
Benim php çevre hakkında kısa bilgi,
PHP 5.2.4-2ubuntu5.6 with Suhosin-Patch 0.9.6.2 (cli) (built: Apr 17 2009 14:29:38)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
with Xdebug v2.0.3, Copyright (c) 2002-2007, by Derick Rethans
Ubuntu 8.04.2 Running on
EDIT: tried proc_open instead of popen and the script stuck at the same place. EDIT: replaced fread with stream_get_contents, but still stuck at the same place...