I am running the following code. What it does is take a text file, splits it into parts that end with '_part' ending and than calls the same script with a flag to process the files - uploading the content to a Drupal system.

What happens is that the script runs and finishes the work, all invoked scripts finish too and I can see the results. but each time after I run it the web server stops responding. Is there anything basic that I am missing or doing wrong?

  if(isset($argv[3])){
    $isSplit = $argv[3] == 'true' ? true : false;
  }      
  if($isSplit){                  
    $fileSplitter = new CSVFileParts($fileName);
    $parts = $fileSplitter->split_file();
    echo 'Splited file to '.$parts.' parts'.PHP_EOL;
    for($part =0; $part < $parts; $part++){            
      echo shell_exec('php Service.php u ./partial_files/'.basename($fileName).'.part_'.$part.' false > /dev/null 2>/dev/null &');
    }        
  }else{                            
    $log->lwrite('uploading '.$argv[2]); 
    $drupalUploader = new DrupalUploader($fileName, $log);
    $drupalUploader->upload();        
  }
link|improve this question

Could you try echo shell_exec('php Service.php u ./partial_files/'.basename($fileName).'.part_'.$part.' > /dev/null; echo $?'); – Wesso Oct 30 '11 at 15:40
I'm also curious if the $parts var is a count of how many parts you have or a array. Because in your array you do like so $part < $parts, maybe try sizeof($parts) – Wesso Oct 30 '11 at 15:43
Are you sure the script finishes? You wrote, you can see the result, but how do your really track that the script has finished? – hakre Oct 30 '11 at 15:53
@wesso - $parts is the number of parts file splitter has made. it a number not an array. – Ido Weinstein Oct 30 '11 at 16:17
@hakre - i see the results on the Drupal system, items were uploaded as expected. running "ps -aux | grep php" on the server shows the invoked processes and after a while shows only the "ps" command so an educated guess is that the processes finish. – Ido Weinstein Oct 30 '11 at 16:19
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

shell_exec — Execute command via shell and return the complete output as a string

shell_exec expects the file handle to be open, but you redirect everything to /dev/null and detach it.

As you plan to detach the process and remove all the output, you should use exec() and escapeshellcmd()

see: http://www.php.net/manual/en/function.exec.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.