I'm trying to automate a report using PHP + Sweave, using the PHP function 'shell_exec' to call the R CMD Sweave, creating my pdf report. I'm running Apache on Mac OSX.
When i call it from the command line
sudo php report.php
It works fine (need to sudo, otherwise i get a error), and i get my report.pdf. But when i call it from the browser
localhost/report.php
The report.pdf file is not generated (but the images and the .tex file are) and a get the message:
'...You can now run pdflatex on report.tex blablabla'
If i manually run
latex report.tex
on the .tex file, i get compile errors from TeX. In other words, for some reason, shell_exec() does not allow my .tex to be converted to the final pdf.
My PHP:
<?php
$res = shell_exec("R CMD Sweave report.Rnw --pdf");
echo($res);
?>
Thanks for any help!