我认为PEAR邮件队列教程的.config文件有问题。我检查过我的路径,它们都很好。
<?php
require_once "Mail/Queue.php";
$db_options['type'] = 'db';
$db_options['dsn'] = 'mysql://mysqlusername:mysqlpasswd@localhost/mail';
$db_options['mail_table'] = 'mail_queue';
$mail_options['driver'] = 'smtp';
$mail_options['host'] = 'smtp.tiscali.co.uk';
$mail_options['port'] = 25;
$mail_options['localhost'] = 'localhost'; //optional Mail_smtp parameter
$mail_options['auth'] = false;
$mail_options['username'] = 'username';
$mail_options['password'] = 'passwd';
?>
我可以使用SMTP.tiscali.co.uk独立发送SMTP邮件。我已经在数据库邮件中仔细地输入了表格。我添加了适当的MySQL GRANT权限。我的代码在add_message.php中失效,但我知道输入了mail_queue语句。
<?php
include './config.php';
/* we use the db_options and mail_options here */
$mail_queue =& new Mail_Queue($db_options, $mail_options);
/* the rest */
?>
szerne在bluehostforum上也有类似的帖子。http://www.bluehostforum.com/archive/index.php/t-19791.html它看起来和我的,但使用mdb2容器。我不确定任何细节是否重要。任何帮助都将不胜感激!我很困惑。非常感谢,George
使用MDB2。
安装MDB2及其mysql选项失败。PEAR邮件队列教程中没有明确提到。
现在运行良好。