Make back-up of the nurunpdf.php file.
in the nurunpdf.php replace some code as following:
Code: Select all
replace:
$PDF->Output('nureport.pdf', 'I'); (normally it's line 54)
with 4 lines as following:
$customer='Patricia';
$date = date('Y-m-d_H-i-s');
$file_name= 'Report_'.$customer.$date.'.pdf';
$PDF->Output($file_name, 'I');