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);
どうすれば問題を解決できますか?