1
0
mirror of https://github.com/pierre42100/comunic synced 2025-07-12 13:02:59 +00:00
Files
3rdparty
RestServer
analysing_page
crypt
fancyapps
gestionnaire_upload
luminous
pdf.js
phpmailer
docs
Callback_function_notes.txt
DomainKeys_notes.txt
Note_for_SMTP_debugging.txt
extending.html
faq.html
generatedocs.sh
pop3_article.txt
examples
extras
language
test
.gitignore
.scrutinizer.yml
.travis.yml
LICENSE
PHPMailerAutoload.php
README.md
changelog.md
class.phpmailer.php
class.pop3.php
class.smtp.php
composer.json
travis.phpunit.xml.dist
tcpdf
video_js
assets
developer
doc
inc
minifyurl
tools
.gitignore
.htaccess
README.md
acceuil-aide-en.html
acceuil-aide-fr.html
action.php
aide.php
amis.php
api.php
archive_private_chat.php
browserconfig.xml
chat.php
commentaire.php
connecter.php
connexiondb.php
creercompte.php
deconnexion.php
exportdonnees.php
galerie_videos.php
galerieimages.php
imgcommentaire.php
index.php
listeamis.php
messagerie.php
notification.php
notification_old.php
parametres.php
privatechat.php
r.php
robots.txt
rss.php
securite.php
sitemap.xml
solvepassword.php
suppcompte.php
Pierre Hubert 990540b2b9 First commit
2016-11-19 12:08:12 +01:00

29 lines
1.6 KiB
HTML
Executable File

<html>
<head>
<title>PHPMailer FAQ</title>
</head>
<body>
<h2>PHPMailer FAQ</h2>
<ul>
<li><strong>Q: I am concerned that using include files will take up too much
processing time on my computer. How can I make it run faster?</strong><br>
<strong>A:</strong> PHP by itself is fairly fast, but it recompiles scripts every time they are run, which takes up valuable
computer resources. You can bypass this by using an opcode cache which compiles
PHP code and store it in memory to reduce overhead immensely. <a href="http://www.php.net/apc/">APC
(Alternative PHP Cache)</a> is a free opcode cache extension in the PECL library.</li>
<li><strong>Q: Which mailer gives me the best performance?</strong><br>
<strong>A:</strong> On a single machine the <strong>sendmail (or Qmail)</strong> is fastest overall.
Next fastest is mail() to give you the best performance. Both do not have the overhead of SMTP.
If you do not have a local mail server (as is typical on Windows), SMTP is your only option.</li>
<li><strong>Q: When I try to attach a file with on my server I get a
"Could not find {file} on filesystem error". Why is this?</strong><br>
<strong>A:</strong> If you are using a Unix machine this is probably because the user
running your web server does not have read access to the directory in question. If you are using Windows,
then the problem is probably that you have used single backslashes to denote directories (\).
A single backslash has a special meaning to PHP so these are not
valid. Instead use double backslashes ("\\") or a single forward
slash ("/").</li>
</ul>
</body>
</html>