1<html>
2<head>
3<title>html2ps/html2pdf error message</title>
4<style>
5body {
6  color:#000;
7  background-color:#fff;
8  margin:10px;
9  font-family:arial, helvetica, sans-serif;
10  color:#000;
11  font-size:12px;
12  line-height:18px;
13}
14p,td {
15  color:#000;
16  font-size:12px;
17  line-height:18px;
18  margin-top:3px;
19  vertical-align: top;
20}
21h1 {
22  font-family:arial, helvetica, sans-serif;
23  color:#669;
24  font-size:27px;
25  letter-spacing:-1px;
26  margin-top:12px;
27  margin-bottom:12px;
28}
29tr.odd {
30  background-color: #f0f0f0;
31}
32tr.even {
33  background-color: #ffffff;
34}
35td {
36  padding: 3px;
37}
38</style>
39</head>
40<body>
41<h1>Error</h1>
42<p>
43PDFLIB PHP extension not found. You will not be able to generate PDF using 'PDFLIB' output method, as
44it requires PDFLIB PHP extension.
45<p>
46<table>
47<tr class="odd">
48<th width="20%">Problem</th><th>Solution</th>
49</tr>
50<tr class="even">
51<td rowspan="2">PDFLIB extension not installed on your computer</td>
52<td>Install PDFLIB extension yourself or ask your system administrator. Note that this extension can be loaded dynamically if
53your PHP configuration allows it.</td>
54</tr>
55<tr class="odd">
56<td>Try using another PDF output methods</td>
57</tr>
58<tr class="even">
59<td>
60You have PDFLIB extension, but it is not loaded dynamically; you're getting warning message
61"<tt>Warning: dl(): Not supported in multithreaded Web servers - use extension statements in your php.ini in ...</tt>"
62</td>
63<td>
64You're using multithreaded Web server; in this case you should either add PDF extension to php.ini to be loaded statically, or
65switch to CGI version of PHP (or possibly change your HTTP server, if possible).
66</td>
67</tr>
68<tr class="odd">
69<td rowspan="2">
70You have PDFLIB extension, but it is not loaded dynamically. No specific warning messages.</tt>"
71</td>
72<td>
73Probably you have non-standard name of this extension; by default, the script searches for 'php_pdf.dll' on Windows and
74'pdflib.so' on *nix. Check if your extension have the same name.
75</td>
76</tr>
77<tr class="even">
78<td>
79You have PDFLIB PHP interface, but PDFLIB is missing or placed into directory where system cannot locate it;
80check if you have both parts of the PDFLIB package.
81</td>
82</tr>
83</table>
84</body>
85</html>
86