2016-09-10 4 views
0

Я хочу использовать PDFlib для добавления изображения в существующий pdf. В настоящее время я тестирую свой сайт на Bitnami mampstack-5.6.19-0, но PDFlib не установлен с этим стеком.Как добавить PDFlib в bitmami mamp stack

Я попытался, следуя инструкциям в этом post и их адаптации к среде Mac, но теперь удача

Я обновил PDFLib моего местного РНР, используя MacPorts, так что я могу дать PECL пути к pdflib.h

Это распечатка ошибок получить при запуске pecl install pdflib

bash-3.2$ sudo pecl install pdflib 
downloading pdflib-3.0.4.tgz ... 
Starting to download pdflib-3.0.4.tgz (27,043 bytes).........done: 27,043 bytes 
7 source files, building 
WARNING: php_bin /Applications/mampstack-5.6.19-0/php/bin/php appears to have a suffix /bin/php, but config variable php_suffix does not match 
running: phpize 
Configuring for: 
PHP Api Version:   20131106 
Zend Module Api No:  20131226 
Zend Extension Api No: 220131226 
path to pdflib installation? : Downloads/pdflib/opt/local/include 
building in /private/tmp/pear/temp/pear-build-rootzX8tkK/pdflib-3.0.4 
running: /private/tmp/pear/temp/pdflib/configure --with-pdflib=Downloads/pdflib/opt/local/include 
checking for grep that handles long lines and -e... /usr/bin/grep 
checking for egrep... /usr/bin/grep -E 
checking for a sed that does not truncate output... /opt/local/bin/gsed 
checking for cc... cc 
checking whether the C compiler works... yes 
checking for C compiler default output file name... a.out 
checking for suffix of executables... 
checking whether we are cross compiling... no 
checking for suffix of object files... o 
checking whether we are using the GNU C compiler... yes 
checking whether cc accepts -g... yes 
checking for cc option to accept ISO C89... none needed 
checking how to run the C preprocessor... cc -E 
checking for icc... no 
checking for suncc... no 
checking whether cc understands -c and -o together... yes 
checking for system library directory... lib 
checking if compiler supports -R... no 
checking if compiler supports -Wl,-rpath,... yes 
checking build system type... x86_64-apple-darwin14.5.0 
checking host system type... x86_64-apple-darwin14.5.0 
checking target system type... x86_64-apple-darwin14.5.0 
checking for PHP prefix... /Applications/mampstack-5.6.19-0/php 
checking for PHP includes... -I/Applications/mampstack-5.6.19- 0/php/include/php -I/Applications/mampstack-5.6.19-0/php/include/php/main -I/Applications/mampstack-5.6.19-0/php/include/php/TSRM -I/Applications/mampstack-5.6.19-0/php/include/php/Zend -I/Applications/mampstack-5.6.19-0/php/include/php/ext -I/Applications/mampstack-5.6.19-0/php/include/php/ext/date/lib 
checking for PHP extension directory... /Applications/mampstack-5.6.19-0/php/lib/php/extensions 
checking for PHP installed headers prefix... /Applications/mampstack-5.6.19-0/php/include/php 
checking if debug is enabled... no 
checking if zts is enabled... no 
checking for re2c... no 
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. 
checking for gawk... gawk 
checking for PDFlib support... yes, shared 
checking for g++... g++ 
checking whether we are using the GNU C++ compiler... yes 
checking whether g++ accepts -g... yes 
checking how to run the C++ preprocessor... g++ -E 
configure: error: pdflib.h not found! Check the path passed to --with-pdflib=<PATH>. PATH should be the install prefix directory. 
ERROR: `/private/tmp/pear/temp/pdflib/configure --with-pdflib=Downloads/pdflib/opt/local/include' failed 
bash-3.2$ 

ответ

0

Bitnami разработчик здесь,

Вы можете установить PDFlib на вашем MAMP стека, выполнив следующие действия:

  • Скачать PDFlib

$ кд/путь/к/ваш/Главная/Загрузки

$ Wget http://www.pdflib.com/binaries/PDFlib/705/PDFlib-Lite-7.0.5p3.tar.gz

  • Сжатие:

$ деготь -xzf PDFlib-Lite-7.0.5p3.tar.gz $ кд PDFlib-Lite-7.0.5p3

  • Построить его

$ ./configure $ sudo make $ sudo make install

  • Установка с помощью PECL

$ PECL установить PDFLib

Это добавит pdf.so в папку расширений, так что вы должны проверить, где он добавляет его. Принимая во внимание ваш installdir, он должен быть /Applications/mampstack-5.6.19-0/php/lib/php/extensions/pdf.so.

  • Наконец, вы должны добавить эту строку в `/Applications/mampstack-5.6.19-0/php/etc/php.ini:

расширение = PDF.так

  • и перезапустить Apache и PHP-FPM:

/Applications/mampstack-5.6.19-0/ctlscript.sh рестарт апаш

/Применения/mampstack- 5.6.19-0/ctlscript.sh restart php-fpm

Вы можете проверить, что расширение загружено, выполняя эту команду мм и:

php -i | grep PDF

Смежные вопросы