Typos fixed
[shipsimu.git] / inc / classes / third_party / php_mailer / docs / faq.html
1 <html>\r
2 <head>\r
3 <title>PHPMailer FAQ</title>\r
4 <style>\r
5 body, p {\r
6   font-family: Arial, Helvetica, sans-serif;\r
7   font-size: 12px;\r
8 }\r
9 div.width {\r
10   width: 500px;\r
11   text-align: left;\r
12 }\r
13 </style>\r
14 </head>\r
15 <body bgcolor="#FFFFFF">\r
16 <center>\r
17 <div class="width">\r
18 <h2>PHPMailer FAQ</h2>\r
19 <ul>\r
20 \r
21   <li><b style="background-color: #FFFF00">Q:</b> <b>I&#039;m using the SMTP mailer and I keep on getting a timeout message\r
22   well before the X seconds I set it for.  What gives?</b><br />\r
23   <b style="background-color: #FFFF00">A:</b> PHP versions 4.0.4pl1 and earlier have a bug in which sockets timeout\r
24   early.  You can fix this by re-compiling PHP 4.0.4pl1 with this fix:\r
25   <a href="timeoutfix.diff">timeoutfix.diff</a>. Otherwise you can wait for the new PHP release.<br /><br /></li>\r
26 \r
27   <li><b style="background-color: #FFFF00">Q:</b> <b>I am concerned that using include files will take up too much\r
28   processing time on my computer.  How can I make it run faster?</b><br />\r
29   <b style="background-color: #FFFF00">A:</b>  PHP by itself is very fast.  Much faster than ASP or JSP running on\r
30   the same type of server.  This is because it has very little overhead compared\r
31   to its competitors and it pre-compiles all of\r
32   its code before it runs each script (in PHP4).  However, all of\r
33   this compiling and re-compiling can take up a lot of valuable\r
34   computer resources.  However, there are programs out there that compile\r
35   PHP code and store it in memory (or on mmaped files) to reduce the\r
36   processing immensely.  Two of these: <a href="http://apc.communityconnect.com">APC\r
37   (Alternative PHP Cache)</a> and <a href="http://bwcache.bware.it/index.htm">Afterburner</a>\r
38   (<a href="http://www.mm4.de/php4win/mod_php4_win32/">Win32 download</a>)\r
39   are excellent free tools that do just this.  If you have the money\r
40   you might also try <a href="http://www.zend.com">Zend Cache</a>, it is\r
41   even faster than the open source varieties.  All of these tools make your\r
42   scripts run faster while also reducing the load on your server. I have tried\r
43   them myself and they are quite stable too.<br /><br /></li>\r
44 \r
45   <li><b style="background-color: #FFFF00">Q:</b> <b>What mailer gives me the best performance?</b><br />\r
46   <b style="background-color: #FFFF00">A:</b> On a single machine the <b>sendmail (or Qmail)</b> is fastest overall.\r
47   Next fastest is mail() to give you the best performance. Both do not have the overhead of SMTP.\r
48   If you have you have your mail server on a another machine then\r
49   SMTP is your only option, but you do get the benefit of redundant mail servers.<br />\r
50   If you are running a mailing list with thousands of names, the fastest mailers in order are: SMTP, sendmail (or Qmail), mail().<br /><br /></li>\r
51 \r
52   <li><b style="background-color: #FFFF00">Q:</b> <b>When I try to attach a file with on my server I get a\r
53   "Could not find {file} on filesystem error".  Why is this?</b><br />\r
54   <b style="background-color: #FFFF00">A:</b> If you are using a Unix machine this is probably because the user\r
55   running your web server does not have read access to the directory in question.  If you are using Windows,\r
56   then the problem probably is that you have used single backslashes to denote directories (\).\r
57   A single backslash has a special meaning to PHP so these are not\r
58   valid.  Instead use double backslashes ("\\") or a single forward\r
59   slash ("/").<br /><br /></li>\r
60 \r
61 </ul>\r
62 \r
63 </div>\r
64 </center>\r
65 \r
66 </body>\r
67 </html>\r