팁자료 cPanel Mailer Error: SMTP connect() failed. 메일 발송 오류 사항( PHPMailer )
페이지 정보
작성자 웹지기 댓글 0건 조회 3,059회 작성일 18-10-25 13:00본문
[code]
Mailer Error: SMTP connect() failed.
https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
[/code]
cPanel에서 다음과 같은 오류가 발생
그누보드
/config.php 161줄
[code]
define('G5_SMTP_PORT', '25'); ===> define('G5_SMTP_PORT', '');
[/code]
PHPMailer
/plugin/PHPMailer/class.smtp.php 260줄
[code]
public function connect($host, $port = null, $timeout = 30, $options = array())
{
static $streamok;
[/code]
====>
[code]
public function connect($host, $port = null, $timeout = 30, $options = array())
{
if(count($options)==0){
$options['ssl']=array('verify_peer'=>false,'verify_peer_name'=>false,'allow_self_signed'=>true);
}
static $streamok;
[/code]
위의 수정은 그누보드5 배포본을 그대로 수정한 것입니다.
PHPMailer 파일을 사용하시는분들은 배포본으로 되돌리셔야 정상적으로 메일발송이 가능합니다.
관련링크
댓글목록
등록된 댓글이 없습니다.