PDF Lib安装在Linux服务器上失败使用pecl install pdflib

【字号: 日期:2024-03-28浏览:29作者:雯心
(adsbygoogle = window.adsbygoogle || []).push({}); 如何解决PDF Lib安装在Linux服务器上失败使用pecl install pdflib?

我通过以下方式解决了问题:下载了最新的http://www.pdflib.com/binaries/PDFlib/705/PDFlib-Lite-7.0.5p3.tar.gz

# cd /home/xxx/Downloads/# wget http://www.pdflib.com/binaries/PDFlib/705/PDFlib-Lite-7.0.5p3.tar.gz

解压缩它

# tar xzf PDFlib-Lite-7.0.5p3.tar.gz# cd PDFlib-Lite-7.0.5p3

查看是否包含pdflib.h

# find . -name ’pdflib.h’./PDFlib-Lite-7.0.5p3/libs/pdflib/pdflib.h

通过pecl安装

# pecl install pdflib

如果要求输入路径,请输入相同的完整路径/home/xxx/Downloads/pdf/PDFlib-Lite-7.0.5p3/libs/pdflib从安装消息中查看是否在文件扩展名中添加了pdf.so(在PHP扩展目录中),此目录名称可能有所不同,但文件pdf.so必须存在):

# ls -la /usr/lib/PHP5/20090626

更改pdf.ini

# nano /etc/PHP5/apache2/PHP.ini

最后添加

extension=pdf.so

(您可能也想在命令行PHP conf /etc/PHP5/cli/PHP.ini中添加它)

重新加载Apache

# service apache2 reload

看,是否出现此扩展名

对于Apache,请参见PHPinfo()函数的输出(如果有关PDFlib的新内容)PDFlib PDFlib PDF支持的支持PDFlib GmbH二进制版本7.0.5p3 PECL版本3.0.0修订版$修订版:1.80.2.2 $

用于命令行

在提示时输入

# PHP -i |grep PDFPDFlibPDFlib Support => enabledPDFlib GmbH Binary-Version => 7.0.5p3解决方法

我正在尝试在服务器上安装pdflib并收到错误消息:

configure: error: pdflib.h not found! Check the path passed to --with-pdflib=<PATH>. PATH should be the install prefix directory. ERROR:/root/tmp/pear/pdflib/configure --with-pdflib=/usr/local’ failed

我在终端输入以下内容:

pecl安装pdflib

path to pdflib installation? :

/ usr /本地

相关文章: