PDFLIB PHP extension could not be found. You will not be able to generate the PDF using 'PDFLIB' output method, as it requires the PDFLIB PHP extension.
Problem | Solution |
---|---|
PDFLIB extension not installed on your computer | Install the PDFLIB extension yourself or ask your system administrator. Note that this extension can be loaded dynamically if your PHP configuration allows it. |
Try using another PDF output methods | |
You have the PDFLIB extension, but it is not loaded dynamically; you're getting the warning message "Warning: dl(): Not supported in multithreaded Web servers - use extension statements in your php.ini in ..." | You're using a multithreaded Web server; in this case you should either add the PDF extension to php.ini to be loaded statically, or switch to the CGI version of PHP (or possibly change your HTTP server, if possible). |
You have the PDFLIB extension, but it is not loaded dynamically. No specific warning messages appear. | Probably you have a non-standard name of this extension; by default, the script searches for 'php_pdf.dll' on Windows and 'pdflib.so' on *nix. Check if your extension has the same name, and adjust if needed. |
You have the PDFLIB PHP interface, but PDFLIB is missing or placed into directory where the system cannot locate it; check if you have both parts of the PDFLIB package. |