HI ALL,
i'm trying to make my apache server to allow me to create pdf templates dynamically from a database. I managed to do this on my windows machine by going in to the php.ini file and uncommenting lines
extension=php_cpdf.dll
extension=php_pdf.dll
what do i do on an apache server to allow me to write scripts to create dynamic pdf templates??? what do i need to install and what commands do i use???
any help will be appreciated
installing PDF on Apache
Moderator: General Moderators
.. To use those extensions you need PHP compiled with support for themm (on *nix the equiv of a .dll is a .so, but the .so file needs to be there, if you compile PHP yourself you can enable it during configuration and it will be created), and you likely need the corresponding PDF lirbaries as well (See the manual, these libs are NOT free for commercial use, not on Windows either, alhtought it sounds like someone distributed them within your package)..