Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ใช้ PHP Mailer เเล้วขึ้น error ดังนี้ค่ะ Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}



 

ใช้ PHP Mailer เเล้วขึ้น error ดังนี้ค่ะ Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}

 



Topic : 082360



โพสกระทู้ ( 381 )
บทความ ( 0 )



สถานะออฟไลน์




ใช้ PHP Mailer เเล้วขึ้น error ดังนี้ค่ะ

Code
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in D:\vhosts\bangkoksolar.com\httpdocs\th\products\sendmail\class.phpmailer.php on line 53


ซึ่งขึ้นเฉพาะใน server อ่ะค่ะ เพราะใน appserv สามารถส่งเมล์ได้เป็นปกติ

แล้วก็ลองใช้ smtp Authen ก็ไม่สามารถส่งได้ค่ะ ลองปริ้นผลออกมาเป็นดังนี้อ่ะค่ะ

Code
connect to the host and port:---:Connected to: 220 DEBUTWEB1.home ESMTP MailEnable Service, Version: 6.5-- ready at 08/15/12 13:40:27
say HELO to our little friend:---:250 Requested mail action okay, completed
start a tls session if needed:---: 503 Bad sequence of commands
you have to say HELO again after TLS is started :---:250 Requested mail action okay, completed
request for auth login :---: 334 VXNlcm5hbWU6
send the username:---: 334 UGFzc3dvcmQ6
send the password:---: 504 Invalid Username or Password
email from:---: 250 Requested mail action okay, completed
email to:---: 550 Requested action not taken: mailbox unavailable or not local
the email :---: 503 Bad sequence of commands. You must specify the recipients of a message before you can send it
observe the . after the newline, it signals the end of message:---: 503 Bad sequence of commands
say goodbye:---: 503


ไม่ทราบว่ามีแนวทางการแก้ไขอย่างไรบ้างค่ะ จนปัญญาจริงๆค่ะ



Tag : PHP, HTML/CSS, JavaScript







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-08-15 13:51:33 By : OaLunla View : 1862 Reply : 7
 

 

No. 1



โพสกระทู้ ( 177 )
บทความ ( 0 )



สถานะออฟไลน์


ไม่เห็นโค๊ดก็ไม่รู้จะแก้ยังไงเหมือนกันคับ






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-15 13:55:48 By : ichiko
 


 

No. 2



โพสกระทู้ ( 381 )
บทความ ( 0 )



สถานะออฟไลน์


soce code ค่ะ

Code (PHP)
<?php  
/* * * * * * * * * * * * * * SEND EMAIL FUNCTIONS * * * * * * * * * * * * * */   
//This will send an email using auth smtp and output a log array  
//logArray - connection,   
function authSendEmail($from, $namefrom, $to, $nameto, $subject, $message)  
{  
//SMTP + SERVER DETAILS  
/* * * * CONFIGURATION START * * * */ 
$smtpServer = "smtp.bangkoksolar.com";  
$port = "25";  
$timeout = "30";  
$username = "[email protected]";  
$password = "P@ssw0rd";  
$localhost = "smtp.bangkoksolar.com";  
$newLine = "\r\n";  
/* * * * CONFIGURATION END * * * * */ 
//Connect to the host on the specified port  
$smtpConnect = fsockopen($smtpServer, $port, $errno, $errstr, $timeout);  
$smtpResponse = fgets($smtpConnect, 515);  
if(empty($smtpConnect))   
{  
$output = " <br >Failed to connect: $smtpResponse";  
echo $output;
return $output;  
}  
else 
{  
echo " <br >Connected: $smtpResponse";  
$logArray['connection'] = "Connected: $smtpResponse";  
}  
//Request Auth Login  
fputs($smtpConnect,"AUTH LOGIN" . $newLine);  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['authrequest'] = "$smtpResponse";  
echo " <br >Request Auth Login".$logArr['authrequest'];
//Send username  
fputs($smtpConnect, base64_encode($username) . $newLine);  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['authusername'] = "$smtpResponse";  
echo " <br >Send username  ".$logArray['authusername'];

//Send password  
fputs($smtpConnect, base64_encode($password) . $newLine);  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['authpassword'] = "$smtpResponse";  
echo "<br > Send username  ".$logArray['authusername'];
//Say Hello to SMTP  
fputs($smtpConnect, "HELO $localhost" . $newLine);  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['heloresponse'] = "$smtpResponse";  
echo "<br >  Say Hello to SMTP    ".$logArray['heloresponse'];
//Email From  
fputs($smtpConnect, "MAIL FROM: $from" . $newLine);  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['mailfromresponse'] = "$smtpResponse";  
echo "<br > Email From    ".$logArray['mailfromresponse'];
//Email To  
fputs($smtpConnect, "RCPT TO: $to" . $newLine);  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['mailtoresponse'] = "$smtpResponse";  
echo "<br >Email To   ".$logArray['mailtoresponse'];
//The Email  
fputs($smtpConnect, "DATA" . $newLine);  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['data1response'] = "$smtpResponse";  
echo "<br > The Email    ".$logArray['data1response'];
//Construct Headers  
$headers = "MIME-Version: 1.0" . $newLine;  
$headers .= "Content-type: text/html; charset=iso-8859-1" . $newLine;  
$headers .= "To: $nameto <$to>" . $newLine;  
$headers .= "From: $namefrom <$from>" . $newLine;  
fputs($smtpConnect, "To: $to\nFrom: $from\nSubject: $subject\n$headers\n\n$message\n.\n");  
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['data2response'] = "$smtpResponse";  
echo "<br > Construct Headers    ".$logArray['data2response'];
// Say Bye to SMTP  
fputs($smtpConnect,"QUIT" . $newLine);   
$smtpResponse = fgets($smtpConnect, 515);  
$logArray['quitresponse'] = "$smtpResponse";   
echo "<br >\nSay Bye to SMTP    ".$logArray['quitresponse'];

 //insert var_dump here -- uncomment out the next line for debug info
 //var_dump($logArray);
}  
?>
<?php  
//new function  
$to = "[email protected]";  
$nameto = "Who To";  
$from = "[email protected]";  
$namefrom = "siri  to";  
$subject = "Hello World Again!";  
$message = "World, Hello!";  
$res=authSendEmail($from, $namefrom, $to, $nameto, $subject, $message);  
echo $res;
?>



ประวัติการแก้ไข
2012-08-16 14:03:20
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-15 15:07:37 By : OaLunla
 

 

No. 3



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


class.phpmailer.php ไฟล์นี้ไปเผลอแก้หรือเผลอพิมพ์อะไรเข้าไปหรือเปล่า ลองโหลดมาใหม่ แล้ววางทับไปดู
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-15 15:48:24 By : ikikkok
 


 

No. 4



โพสกระทู้ ( 381 )
บทความ ( 0 )



สถานะออฟไลน์


ไม่นะค่ะ ไมได้แก้ไขอะไร ซึ่งในส่วนของ phpmailer ที่ทดลองทำใน Appserv สามารถส่งเมลล์ได้ปกตินะค่ะ แต่พอเอาขึ้น server กลับรันไม่ได้ค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-15 16:53:50 By : OaLunla
 


 

No. 5



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ไม่รู้นะ มันฟ้อง syntax error ที่ไฟล์นั้นอะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-15 18:42:44 By : ikikkok
 


 

No. 6



โพสกระทู้ ( 4,756 )
บทความ ( 8 )



สถานะออฟไลน์


error ในไฟล์นั้นครับ ลองโหลดใหม่มาทับเก่า
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-15 23:59:08 By : mr.v
 


 

No. 7



โพสกระทู้ ( 177 )
บทความ ( 0 )



สถานะออฟไลน์


ดูแล้วไม่น่าจะผิดนะคับ ว่าแต่ไฟล์นี้ใช่หรือเปล่าครับ source code อ่ะคับ
มันมีโค๊ดมากกว่านี้หรือเปล่าคับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-16 09:36:37 By : ichiko
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ใช้ PHP Mailer เเล้วขึ้น error ดังนี้ค่ะ Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่