непонятки с exec system и т.д.

Статус
В этой теме нельзя размещать новые ответы.
Код:
<?php

$cmd="ls -al";
$result = "";
if (is_callable("exec")) {exec($cmd,$result); $result = join("\n",$result); print "<pre>" ;print_r($result);print "</pre>\n";} else echo "no exec";

//

$result = "";
$cmd="ls -al";
if (($result = `$cmd`) !== FALSE) { echo "<pre>"; echo $result; echo "</pre>\n";}

//

$cmd="ls -al";
$res="";
if (is_callable("system")){
  @ob_start();
  @system($cmd);
   $res = @ob_get_contents();
   @ob_end_clean();
echo "<pre>";echo $res;echo "</pre>\n";} else echo "system() is disabled";

//

$cmd="ls -al";
$res="";
if (is_callable("passthru")){
  @ob_start();
  @passthru($cmd);
   $res = @ob_get_contents();
   @ob_end_clean();
echo "<pre>";echo $res;echo "</pre>\n";} else echo "passthru is disabled";

//

$cmd="ls -al";
$result="";
if (is_resource($fp = popen($cmd,"r")))
  {
   $result = "";
   while(!feof($fp)) {$result .= fread($fp,1024);}
   pclose($fp);
  }
echo "<pre>"; echo $result; echo "</pre>\n";

//

$result= runExternal("ls -al",$code);

print "<pre>";
print $result;
print "</pre>\n";

print "<b>code: $code</b>\n";


 function runExternal($cmd,&$code) {
        $descriptorspec = array(
            0 => array("pipe", "r"),  // stdin is a pipe that the child will read from
            1 => array("pipe", "w"),  // stdout is a pipe that the child will write to
            2 => array("pipe", "w") // stderr is a file to write to
        );
       
        $pipes= array();
        $process = proc_open($cmd, $descriptorspec, $pipes);
       
        $output= "";
       
        if (!is_resource($process)) return false;
       
        #close child's input imidiately
        fclose($pipes[0]);
       
        stream_set_blocking($pipes[1],false);
        stream_set_blocking($pipes[2],false);
       
        $todo= array($pipes[1],$pipes[2]);
       
        while( true ) {
            $read= array();
            if( !feof($pipes[1]) ) $read[]= $pipes[1];
            if( !feof($pipes[2]) ) $read[]= $pipes[2];
           
            if (!$read) break;
           
            $ready= stream_select($read, $write=NULL, $ex= NULL, 2);
           
            if ($ready === false) {
                break; #should never happen - something died
            }
           
            foreach ($read as $r) {
                $s= fread($r,1024);
                $output.= $s;
            }
        }
       
        fclose($pipes[1]);
        fclose($pipes[2]);
       
        $code= proc_close($process);
       
        return $output;
    }
?>
Для просмотра ссылки Войди или Зарегистрируйся

phpinfo:
Для просмотра ссылки Войди или Зарегистрируйся
 
всё шоколадно - все они, эти шесть штук спокойно выполняются, т.е. с exec system и т д всё хорошо.
Значит проблема в вызове centericq, а не в них
Поэтому пробуй вместо команды $cmd="ls -al" варианты строк вызова этой асечной команды
 
Для просмотра ссылки Войди или Зарегистрируйся
Abort trap
Abort trap
Abort trap
Abort trap
Abort trap
terminate called after throwing an instance of 'std::logic_error'
what(:( basic_string::_S_construct NULL not valid
Abort trap
code: 134
Тоже самое если вбить просто:
/home/dangerd/data/icq.sh
или
sh /home/dangerd/data/icq.sh
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху