Re: [PHP] Error 155 using exec - please help !

2002-12-17 Thread Marek Kilimajer
Take a look at http://cvs.php.net/co.php/php4/php.ini-dist The part that should you look at is Resource Limits (max_execution_time,memory_limit) and set up your php.ini accordingly. [EMAIL PROTECTED] wrote: Here is what i do to parse a file with a perl script from PHP to get a formatted output

Re[2]: [PHP] Error 155 using exec - please help !

2002-12-17 Thread ml
Take a look at http://cvs.php.net/co.php/php4/php.ini-dist The part that should you look at is Resource Limits (max_execution_time,memory_limit) and set up your php.ini accordingly. Nope i can't find any solution... It goes well with memory_limit=8M for a 12Ko file, but won't work for a 32K

[PHP] Error 155 using exec

2002-12-16 Thread ml
Here is what i do to parse a file with a perl script from PHP to get a formatted output from the file : error_reporting(E_ALL); $cmd=/pathto/dump.pl \.$HTTP_POST_VARS[filename].\ 21; $res=exec($cmd,$tab,$err); With small files all goes fine, but when parsing a big file i get the 155 error code

[PHP] Error 155 using exec

2002-12-16 Thread ml
Here is what i do to parse a file with a perl script from PHP to get a formatted output from the file : error_reporting(E_ALL); $cmd=/pathto/dump.pl \.$HTTP_POST_VARS[filename].\ 21; $res=exec($cmd,$tab,$err); With small files all goes fine, but when parsing a big file i get the 155 error code

[PHP] Error 155 using exec - please help !

2002-12-16 Thread ml
Here is what i do to parse a file with a perl script from PHP to get a formatted output from the file : error_reporting(E_ALL); $cmd=/pathto/dump.pl \.$HTTP_POST_VARS[filename].\ 21; $res=exec($cmd,$tab,$err); With small files all goes fine, but when parsing a big file i get the 155 error code