php не передает обработку данных на lua

Проблема такая, у нас сделан портал с обработкой данных, где выгруженные данные должны передоваться на обработку lua.
таким скриптом:
$process = proc_open($cmd_in, $descriptorspec, $pipes, $cwd_in);
Но этого не происходит, обработку пытается выполнить сам PHP и соответственно выводит что ничего не понимает.
P/S на Debian работало.

.

покажите var_dump( $cmd_in, $descriptorspec, $pipes, $cwd_in );

а эта строка - это просто подпись

string(64)

string(64) "/var/www/localhost/htdocs/chardump/chardump_srv/chardump_srv.lua"
array(3) {
[0]=>
array(2) {
[0]=>
string(4) "pipe"
[1]=>
string(1) "r"
}
[1]=>
array(2) {
[0]=>
string(4) "pipe"
[1]=>
string(1) "w"
}
[2]=>
array(2) {
[0]=>
string(4) "pipe"
[1]=>
string(1) "w"
}
}
array(3) {
[0]=>
resource(16) of type (stream)
[1]=>
resource(17) of type (stream)
[2]=>
resource(18) of type (stream)
}
string(48) "/var/www/localhost/htdocs/chardump/chardump_srv/"

.

как советует http://php.net/manual/en/function.proc-open.php
сделайте

$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("file", "/tmp/error-output.txt", "a") // stderr is a file to write to
);

и посмотрите, есть ли в /tmp/error-output.txt ошибки. Других идей пока нет.
И да, оформляйте тегами [code] часть текста своих ответов плиз.

а эта строка - это просто подпись

Не получилось, а может быть

Не получилось, а может быть такой вариант что, флаги при установке пакета нужно ставить особые, чтоб открыть доступ на стороннее П.О.

eix -I dev-lang/php в студию

eix -I dev-lang/php в студию

Compute:
Bosch M2.8.1 -> custom Bosch M2.8.3 clone from Russia.
Speed about 260 km,Ram 2 pers.,HDD - 70 kg,210 FLOPS ;)

gs2 ~ # eix -I

gs2 ~ # eix -I dev-lang/php
[U] dev-lang/php
     Available versions:
        (5)     5.2.14 5.3.3-r1
        (5.2)   5.2.16 5.2.17
        (5.3)   5.3.4 5.3.5 ~5.3.5-r1
        {adabas apache2 bcmath berkdb birdstep bzip2 calendar cdb cgi cjk +cli concurrentmodphp crypt +ctype curl curlwrappers db2 dbase dbmaker debug discard-path doc embed empress empress-bcs enchant esoob exif fdftk +fileinfo +filter firebird flatfile force-cgi-redirect fpm frontbase ftp gd gd-external gdbm gmp +hash +iconv imap inifile interbase intl iodbc ipv6 +json kerberos kolab ldap ldap-sasl libedit mcve mhash msql mssql mysql mysqli mysqlnd ncurses nls oci8 oci8-instant-client odbc pcntl +pcre pdo +phar pic +posix postgres qdbm readline recode (+)reflection sapdb +session sharedext sharedmem +simplexml snmp soap sockets solid spell (+)spl sqlite sqlite3 ssl suhosin sybase-ct sysvipc threads tidy +tokenizer truetype unicode wddx (+)xml (+)xmlreader xmlrpc (+)xmlwriter xpm xsl yaz zip zlib}
     Installed versions:  5.2.14(5)(13:34:01 02/12/11)(apache2 berkdb bzip2 cgi cli crypt ctype filter gd gdbm hash iconv ipv6 json mysql mysqli ncurses nls pcre posix readline reflection session simplexml snmp spl ssl tokenizer truetype unicode xml xmlreader xmlwriter zlib -adabas -bcmath -birdstep -calendar -cdb -cjk -concurrentmodphp -curl -curlwrappers -db2 -dbase -dbmaker -debug -discard-path -doc -embed -empress -empress-bcs -esoob -exif -fdftk -firebird -flatfile -force-cgi-redirect -frontbase -ftp -gd-external -gmp -imap -inifile -interbase -iodbc -kerberos -kolab -ldap -ldap-sasl -libedit -mcve -mhash -msql -mssql -oci8 -oci8-instant-client -odbc -pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem -soap -sockets -solid -spell -sqlite -suhosin -sybase-ct -sysvipc -threads -tidy -wddx -xmlrpc -xpm -xsl -yaz -zip)
     Homepage:            http://php.net/
     Description:         The PHP language runtime engine: CLI, CGI, FPM/FastCGI, Apache2 and embed SAPIs.

Настройки просмотра комментариев

Выберите нужный метод показа комментариев и нажмите "Сохранить установки".