PHPでいくつかのコマンドを実行したいのですが、
//DISPLAY setting
$command1 = 'export DISPLAY=:1';
$last_line1 = system($command , $rtn);
//use Xvfb
$command2 = 'Xvfb :1 -screen 0 '.$width.'x'.$height.'x24 &';
$last_line2 = system($command , $rtn);
//open firefox
$command3 = 'firefox -display :1 -width '.$width.' -height '.$height.' -P "webshot" &';
$last_line3 = system($command , $rtn);
//open URL
$command4 = 'firefox -display :1 -remote "openurl('http://www.google.com')" &';
$last_line4 = system($command , $rtn);
command3 でいくつかのエラーが発生しますが、無視できます。command4を続けて実行したいのですが、command3でエラーが発生して実行できません。
この問題を解決するにはどうすればよいですか?