明凯博客

关注网站技术,一个特立独行的程序员

发送邮件出现Could not connect to SMTP host的解决办法

发送邮件出现“不能连接SMTP服务器.”(Error: Could not connect to SMTP host)的原因是fsockopen()被禁用。
如果服务器禁用了fsockopen()函数就会导致PHPmailer连接远程SMTP服务器就会出现上述错误。

明凯使用的是Configure SMTP插件进行测试的,结果如下。

smtp

下面给出解决方法:
如果是自己的服务器,请直接编辑php.ini在disable_function中找到fsockopen并删除,重启php试试吧。
如果无法更改php.ini,请用pfsockopen()函数直接替换掉 fsockopen()
如果pfsockopen函数被禁用的话,换其他可以操作Socket函数来代替, 如stream_socket_client()

举例wordpress发送邮件:
找到wp-includes/class.smtp.php 文件

@fsockopen 改成 @pfsockopen

1
2
3
4
5
6
7
$this->smtp_conn = @fsockopen(
$host, // the host of the server
$port, // the port to use
$errno, // error number if any
$errstr, // error message if any
$tval); // give up after ? secs
// verify we connected properly

改成

1
2
3
4
5
6
7
$this->smtp_conn = @pfsockopen(
$host, // the host of the server
$port, // the port to use
$errno, // error number if any
$errstr, // error message if any
$tval); // give up after ? secs
// verify we connected properly

以上方法只适用于3.8以下的版本,也是网上所有的解决方法。3.9以后的版本按照上面改是不会有结果的。

3.8以上的版本由于安全问题去除了@pfsockopen函数。

导致很多wordpress用户不能发送邮件,明凯我也是。通过各版本的对比,修改。终于找到了原因。

WordPress3.8版本无法使用smtp发送邮件的解决方法

, ,

相关文章

1 条评论 “发送邮件出现Could not connect to SMTP host的解决办法

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注