Trying to figure this out. I am trying to execute a perl script within php, using shell_exec() like so:

<?php
$output=shell_exec("./tst.pl > test.txt");
//$output=shell_exec("./tst.pl");
echo $output;
?>

It will not write output to a file using ">" filename.txt. It will work if I execute without directing it to a filename as I can confirm this with echo.

Does this have to do with using ">"? Permissions should be fine as I am able to run the same perl script on command line and direct to file. Any suggestions for executing this?

The output of "test.txt" will be used as input:

<?php 
$data = array(); 
$InputFile = file("test.txt");
...
?>
link|improve this question

If php is run by a webserver it might have different permissions – Robus Aug 13 '10 at 22:46
good point. i am running this in dev and i'm executing this as root. so i would think that would work. – cjd143SD Aug 13 '10 at 22:56
feedback

1 Answer

up vote 0 down vote accepted

It was definitely a permissions problem. Wrote the file out to /tmp and it worked fine.

<?php
$output=shell_exec("./tst.pl > /tmp/test.txt");
echo $output;
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.