Following are the PHP code lines which I am using to open a PDF file:
$pdf_generartor = new PDFlib();
$doc = $pdf_generartor -> open_pdi_document("Report.pdf", "") or die ("ERROR: " . $pdf_generartor -> get_errmsg());
Though the file is at required location, every time I receive following error:
ERROR: Couldn't open PDF file 'Report.pdf' for reading (file not found)
Is anyone familiar with the possible solution?