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>
43<tt>allow_url_fopen</tt> oprions is disabled in your PHP configuration.
44You will not be able to use this script, as it uses <tt>fopen</tt> PHP function
45to fetch HTML pages.
46<p>
47<table width="100%">
48<tr class="odd">
49<th width="20%">Problem</th><th>Solution</th>
50</tr>
51<tr class="even">
52<td rowspan="2"><tt>allow_url_fopen</tt> is disabled</td>
53<td>Set <tt>allow_url_fopen</tt> to <tt>On</tt> in your php.ini (refer your PHP manual or <a href="http://www.php.net">www.php.net</a> for exact instructions)</td>
54<td></td>
55</tr>
56</table>
57</body>
58</html>
59