cPanel Mailer Error: SMTP connect() failed. 메일 발송 오류 사항( PHPMailer ) > gnuboard

본문 바로가기

사이트 내 전체검색

gnuboard

팁자료 cPanel Mailer Error: SMTP connect() failed. 메일 발송 오류 사항( PHPMailer )

작성일 18-10-25 13:00

페이지 정보

작성자 웹지기 조회 2,234회 댓글 0건

본문

screencapture-funyphp-a.png

 

screendsafasdf.png

[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 파일을 사용하시는분들은 배포본으로 되돌리셔야 정상적으로 메일발송이 가능합니다.


추천0

비추천 0

댓글목록

등록된 댓글이 없습니다.

전체 54건 1 페이지

이미지 목록

게시물 검색
Copyright © 즐거운 코딩 생활 ( funyphp ). All rights reserved.
PC 버전으로 보기