I use cakephp (2.05) and EZPDF(http://www.ros.co.nz/pdf/). On the development server (ubuntu 11.04 - PHP Version 5.3.5-1ubuntu7.4) and the creation of pdf files works perfect. On the production server (fedora - PHP Version 5.2.13) the creation of pdf files does not work if done in a classical way (model - controller - view - helper), result: blank page. If the same file view is positioned inside the webroot with PHP extension, the result is perfect. Can anyone help me with this problem. Sorry for my English:)
//controller
public function pdf($id) {
$this->response->type('pdf');
$this->layout = "pdf";
Configure::write('debug', 0);
}
//view
$row = 500;
$this->pdf->ezSetY($row);
$this->pdf->ezText(iconv('UTF-8', 'CP1252', '<b>' . 'Note') . '</b>', 10, array('aleft' => 20, 'aright' => 80,
'justification' => 'left'));
$this->pdf->setLineStyle(2);
$this->pdf->rectangle(15, $row - 100, 565, 40);
$this->pdf->line(200, $row - 60, 200, $row - 100);
$this->pdf->line(400, $row - 60, 400, $row - 100);
$this->pdf->setLineStyle(1);
$pdfcode = $this->pdf->ezOutput();
$dir = APP . WEBROOT_DIR . '/pdf/';
if (!file_exists($dir)) {
mkdir($dir, 0777);
}
$fname = $dir . 'file.pdf';
$fp = fopen($fname, 'ws');
fwrite($fp, $pdfcode);
fclose($fp);
$this->pdf->ezStream(array('Content-Disposition' => 'file.pdf'
));