cacert.pem


1. 의존성 설치

1
composer require "guzzlehttp/guzzle
cs


2. mailgun.com 가입 후 이메일 인증, 핸드폰 인증


3. .env 메일건 설정

1
2
3
4
5
MAIL_DRIVER=mailgun
MAIL_HOST=smtp.mailgun.org
MAIL_PORT=587
MAILGUN_DOMAIN=sandboxe--b4be02af4e822d8b.mailgun.org
MAILGUN_SECRET=4e96feccb4d7cd3977ddb0416a758d3b-
cs



메일건에 이메일 주소를 등록해야지 정상처리된다.

그리고 해당메일에서 확인처리를 해야 된다.






4. 비밀번호 재설정을 해보자

RequestException in CurlFactory.php line 187: cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html

파일첨부 다운로드 후

  1. C:\wamp64\bin\php\php7.1.9 folder
  2. 저장

php.ini 파일에서


;curl.cainfo 찾아서


주석해제 후 

경로를 삽입해준다.


curl.cainfo = "C:\wamp64\bin\php\php7.1.9\cacert.pem"




▶ 이메일 한글로

\vendor\laravel\framework\src\Illuminate\Auth\Notifications\ResetPassword.php

or

/vendor/laravel/framework/src/Illuminate/Foundation/Auth/SendsPasswordResetEmails.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
   public function sendResetLinkEmail(Request $request)
    {
        $this->validateEmail($request);
 
        // We will send the password reset link to this user. Once we have attempted
        // to send the link, we will examine the response then see the message we
        // need to show to the user. Finally, we'll send out a proper response.
        $response = $this->broker()->sendResetLink(
            $this->credentials($request)
        );
         Alert::success('이메일 전송 완료', '재설정 이메일을 확인해 주세요.');
        return $response == Password::RESET_LINK_SENT
                    ? $this->sendResetLinkResponse($request, $response)
                    : $this->sendResetLinkFailedResponse($request, $response);
    }
cs


▶비밀번호 리셋 6자리로 변경

\vendor\laravel\framework\src\Illuminate\Auth\Notifications\ResetPassword.php

or

or

/vendor/laravel/framework/src/Illuminate/Foundation/Auth/ResetPassword.php

1
2
3
4
5
6
7
8
    protected function rules()
    {
        return [
            'token' => 'required',
            'email' => 'required|email',
            'password' => 'required|confirmed|min:6',
        ];
    }
cs


+ Recent posts