1

elfinder 2.0を使用していますが、Windows 7 では機能しません。理由は、proc_open()関数の実行に時間がかかりすぎるためです。たとえば、 のような単純なコマンドtar --versionは で 25 秒間実行されproc_open()ます。このコードは次のとおりです。

$command = 'tar --version';
$descriptorspec = array(
    array('pipe', 'r'),
    array('pipe', 'w'),
    array('pipe', 'w'),
);
$pipes = null;
$process = proc_open($command, $descriptorspec, $pipes, null, null);

どうすれば問題を解決できますか?

4

0 に答える 0