Swift_TransportException in AuthHandler.php line 181:
Failed to authenticate on SMTP server with username "18561260085@163.com" using 2 possible authenticators
Failed to authenticate on SMTP server with username "18561260085@163.com" using 2 possible authenticators
2017-08-03
如果laravel数据迁移,执行迁移文件时错误,做如下处理:
1)php artisan optimiz
2)mysql5.7版本以上让他支持utf8mb4编码,
\config\database.php的配置项更改一下:
//'charset' => 'utf8mb4',
//'collation' => 'utf8mb4_unicode_ci',
改成:
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci'
1)php artisan optimiz
2)mysql5.7版本以上让他支持utf8mb4编码,
\config\database.php的配置项更改一下:
//'charset' => 'utf8mb4',
//'collation' => 'utf8mb4_unicode_ci',
改成:
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci'
2017-07-26