Hello Guys I am average in server configuration.I am using php exec function to run some commands in my website.But it stopped working if i enable PHP-FPM. Anybody knows why it cause this issue ? Below is php function to run the command
$cmd="pdftk " . $pdf_to_fill . " fill_form " . $fdf_file . " output $outputfile 2>&1";
exec($cmd, $output, $return_var);
Thanks in advance for your help.