ขอรบกวนด้วยครับ แก้ยังไงถ้าขึ้นแบบนี้ Error PHPmailer
ขอรบกวนด้วยครับ พอดีผมใช้ตัว PHPMailer ในการสมัครสมาชิกเพื่อยืนยันEmail พอทำการใส่ข้อมูลแล้ว ขึ้นข้อความนี่ครับ
Warning : steam_socket_enable_crypto() [streams.crypto] : this stream does not support SSL/crypto in C:\appServ\........ on line 197
SMTP _> ERROR:RSET failed : F
Language string failed to load tls Mailer Error Language string failed to load : tls
STMP server error: F
Code (PHP)
$strSQL = "INSERT INTO member (User,Password,Name,LastName,Gender,Address,Province,ZipCode,Tel,Email,employee,SID,Active) VALUES ('".$_POST[txtUser]."','".$_POST[txtPass]."', '".$_POST[txtName]."','".$_POST[txtLastName]."' ,'".$_POST[rdoGender]."','".$_POST[txtAddress]."', '".$_POST[txtProvince]."','".$_POST[txtZipCode]."','".$_POST[txtTel]."', '".$_POST[txtEmail]."','USER','employee','".session_id()."','No')";
$objQuery = mysql_query($strSQL);
$sql ="select * from member where MemberID = User";
$result=mysql_query($sql);
require("PHPMailer_v5.0.2/class.phpmailer.php");
$mail = new PHPMailer();
$mail->CharSet = "utf-8";
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->SMTPSecure = "tls";
$mail->Host = "smtp.gmail.com";
$mail->Port = "587";
$mail->Username = "@gmail.com";
$mail->Password = "";
$mail->From = "[email protected] ";
$mail->Subject = "ยืนยันการสมัครสมาชิก";
$sid = session_id();
$mail->Body = "==========================<br>
Active account<br>
http://127.0.0.1/cart4/activate.php?sid=".$sid."&uid=".$Uid." ";
$mail->AddAddress($txtEmail);
$mail->set('X-Priority', '3');
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "สมัครสมาชิกเรียบร้อยแล้วครับ<br>กรุณายืนยันการสมัครสมาชิกทาง Email ด้วยครับ";
?>
<a href="index_login.php">คลิกเพื่อloginเข้าสู่ระบบ</a><p>
Tag : PHP
ประวัติการแก้ไข 2016-10-31 14:25:23 2016-10-31 15:22:49
Date :
2016-10-31 13:58:11
By :
tagod
View :
1347
Reply :
2
ขอบคุณครับ สำหรับคำแนะนำ
แต่ลองทำตามหมดแล้วอะครับ ก็ไม่ได้เหมือนเดิม
Date :
2016-10-31 15:28:43
By :
tagod
Load balance : Server 05