Symfony 1.4x 和 sfTCPDPlugin

发布于 2024-09-10 04:49:34 字数 225 浏览 6 评论 0原文

我已经在我的项目中安装了 sfTCPDFPlugin,但是当我尝试测试安装是否正常(在官方网站上找到源代码)时,我收到错误:

Fatal error: Class 'TCPDF' not found in C:\wamp\www\mairie\plugins\sfTCPDFPlugin\lib\sfTCPDF.class.php  on line 12

如何修复它?

I have installed sfTCPDFPlugin in my project, but when I try to test if the installation is alright (with the source found on the official site) I get the error:

Fatal error: Class 'TCPDF' not found in C:\wamp\www\mairie\plugins\sfTCPDFPlugin\lib\sfTCPDF.class.php  on line 12

How can I fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北斗星光 2024-09-17 04:49:34

Read the readme tab here : http://www.symfony-project.org/plugins/sfTCPDFPlugin
It says you have to download the tcpdf library, not only the sfTCPDFPlugin.

偏爱自由 2024-09-17 04:49:34

我面临同样的问题,我做了以下任务,它也会对你有帮助。
首先运行: symfony plugin:uninstall sfTCPDFPlugin 然后从插件文件夹中删除 sfTCPDFPlugin 目录。
请执行以下设置:
1. cd 你的项目路径/symfony
2. symfony插件:安装sfTCPDFPlugin
3.下载tcpdf库,将其解压并粘贴到您的sfTCPDFPlugin/lib中,现在您的目录看起来像您的项目路径/symfony/plugins/sfTCPDFPlugin/lib/tcpdf
现在更改您的 ProjectConfiguration.class.php 以添加 $this->enablePlugins( array('sfTCPDFPlugin') ); 现在运行 symfony plugin:publish-asstes 最后清除缓存 symfony cc

i faced with same problem, and i did the following task it will also help you.
first of all run: symfony plugin:uninstall sfTCPDFPlugin then remove the sfTCPDFPlugin directory form your plugin folder.
mow do the following setps:
1. cd your project path/symfony
2. symfony plugin:install sfTCPDFPlugin
3. download the tcpdf library unzip it and past into your sfTCPDFPlugin/lib now your directory looks like your project path/symfony/plugins/sfTCPDFPlugin/lib/tcpdf
now change your ProjectConfiguration.class.php to add $this->enablePlugins( array('sfTCPDFPlugin') ); now run the symfony plugin:publish-asstes and finally clear the cache symfony cc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文