1

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

4

1 回答 1

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
        );

我希望这能帮到您,

于 2013-04-11T09:47:11.213 回答