我的網站一點擊注冊就出現這個。。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