CakePdf - 未加载引擎

时间:2012-10-11 09:28:35

标签: cakephp

我已经为cakephp安装了CakePdf插件,如GitHub上的自述文件中所述。我收到一个错误,说引擎iisnt已加载。我已经尝试了插件附带的所有3个引擎。其他人有这个问题并找到解决方案吗? Rhanks

1 个答案:

答案 0 :(得分:2)

http://www.slideshare.net/jellehenkens/building-php-documents-with-cakepdf-cakefest-2012

这是幻灯片如何安装插件, 要加载引擎,请在bootstrap.php

中使用它
Configure::write('CakePdf', array(
        'engine' => 'CakePdf.DomPdf',

       'pageSize'=>'A4',

        'orientation' => 'landscape',

    ));

转到您的控制器,在公共功能视图中使用或索引:

$this -> pdfConfig = array (
            'orientation' => 'landscape',
            'download' => true,
            'filename' => 'Client_' . $id
        );

我希望这会对你有所帮助,