|
2#
楼主 |
发表于 2006-12-21 17:19:17
|
只看该作者
每次登陆都出现:
Your account may be disabled or blocked or the username/password you entered is incorrect.
试着要通过[ Lost your password? ]来找回密码,试了三种方法,
1) 9)邮件服务器配置
在c:\php-5.0.3\php.ini文件中查找smtp,将localhost改为你的发件服务器,如SMTP = smtp.163.com
在php.ini文件中查找sendmail_from,将前面的分号去掉,并在后面填上邮件地址
在c:\mantis-0.19.2\config_inc.php文件中添加
$g_smtp_host='smtp.163.com';
$g_smtp_username='yourusername';
$g_smtp_password='yourpassword';
$g_phpMailer_method =2;
查找$g_return_path_email,将后面的邮件地址改为有效的地址,这一点非常重要,不然将无法正常发送激活注册的邮件.
config_inc.php其它邮件地址最好也改为有效的地址.
$g_smtp_username,$g_smtp_password在服务器需要验证时用,不需验证时不用加,或设为
$g_smtp_username=''
$g_smtp_password=''
现在你可以注册新用户,并使用发送邮件功能了。
2)2)安装PHPMailer:将下载下来的phpmailer-1.71.zip解压缩到C:\PHP\includes \PHPMailer目录下;
3)修改Windows目录下的PHP.ini,找到include_path,增加C:\PHP\includes \PHPMailer目录;
4)如上表所示,设置$g_use_phpMailer、$g_phpMailer_path和$g_phpMailer_method三个参数;
3)直接覆盖Mantis目录下的phpmail目录(将下载的phpmailer 覆盖上去)
每次都是同样错误:
SYSTEM WARNING: fsockopen() [function.fsockopen]: unable to connect to smtp.163.com:25 (ÄúµÄÖ÷»úÖеÄÈí¼þ·ÅÆúÁËÒ»¸öÒѽ¨Á¢µÄÁ¬½Ó¡£
)
PROBLEMS SENDING MAIL TO: ****@mail.***.cn
Mailer Error: SMTP Error: Could not connect to SMTP host.
如何是好呢。。。。?? |
|