程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> smtp-請問,各位,我的網站出現這個,怎麼解決啊?

smtp-請問,各位,我的網站出現這個,怎麼解決啊?

編輯:編程綜合問答
請問,各位,我的網站出現這個,怎麼解決啊?

我的網站一點擊注冊就出現這個。。SMTP Error: Could not authenticate. 請問各位大哥,這是什麼原因恩?怎麼解決啊,謝謝啊

最佳回答:


mail()函數被禁用,所以只能找相關的插件來解決。這個大部分是由於服務端口被限制出現的,屏蔽不解決可以直接配置smtp即可。如果要解決這個問題的話需要修改文件:
includes/class.smtp.php 文件
把 @fsockopen 改成 @pfsockopen
$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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved