在使用wordpress的时候进行邮件配置可能会出现不成功,下面是我今天配置出现了的错误,并在网上查找到的解决方法。
前面我们介绍了wordpress下无法发送邮的的一插件使用方法,在使用过程我们可能会出现的错误!
mail()函数被禁用, 所以只能找相关的插件来解决。 安装了Configure SMTP插件后,发送测试邮件老是提示“不能连接SMTP服务器.”(Error: Could not connect to SMTP host)郁闷了很久。 上谷歌百度了一遍,有的说是服务器禁用了端口,有的说把class.phpmailer.php中的
- function IsSMTP() {
- $this->Mailer = ‘smtp’;
- }
- function IsSMTP() {
- $this->Mailer = ‘SMTP’;
- }
- $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
- $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