Reputation: 5367
I'm trying to install PDFLib (http://www.pdflib.com/) into Apache/Joomla running on my Mac OSX 10.6 pc. The procedure I've followed is:
when I look at php_info() I don't see a section for PDFLib, and I cant see any errors in Console. Any clues what else to check?
Upvotes: 0
Views: 2529
Reputation: 65409
Try installing php and pdflib with homebrew:
brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/homebrew-php
brew install php53
brew install php53-pdflib
Edit this file:
/usr/local/etc/php/5.3/conf.d/ext-pdflib.ini
Change pdflib.so
to pdf.so
Upvotes: 1
Reputation: 5367
apparently the solution is to use the 10.5 binaries: http://www.pdflib.com/binaries/PDFlib/705/PDFlib-7.0.5-MacOSX-10.5-Universal-php.dmg
Upvotes: 0