我邮件发送遇到问题的解决方法:一:Failed to authenticate on SMTP server with username "XXXX@163.com" using ...。这个需要去163开启SMTP服务,然后设置自己的授权码,将授权码写在.env文件下面的密码处。二:Connection could not be established with host smtp.163.com 我遇到这问题都是端口有问题,SMTP采用是SSL加密协议(我们这里也是),163的SSL端口是465、994,另外,587端口也可以成功发送。163发送邮件的25端口是非SSL端口,所以不行。
2017-06-14
之所以 530 的原因 是 老师的主题和内容里面 好像 有了 测试 有了这个 网易 会判断 这个是 垃圾邮件 所以 不会发送 大家可以试试 改成 其他的 那就可以发送了
2017-06-13
说人家老师 没有用 最新版本的 能不能用 脑子 想一下人家老师更新视频难度不要时间吗 难道老师更新视频的同时可以阻止laravel出新版本吗 搞笑
2017-06-12
报的Expected response code 250 but got code "554",异常不是发送了次数多了而禁止,是没有给邮件主题,添加主题就好了
2017-06-08
could not open input file :D:\wamp\bin\php\php5.5.12\composer.pharconfig
2017-06-07
5.4版本使用migrate报错: Specified key was too long error , 在AppServiceProvider中的调用Schema::defaultStringLength方法来实现配置。
public function boot() { Schema::defaultStringLength(191); }
public function boot() { Schema::defaultStringLength(191); }
2017-06-02
使用composer init 报错The Process class relies on proc_open, which is not available on your PHP installation.
2017-05-31
disk()参数名字要和 filesystems.php中添加的配置项 名字要一致 eg:
'upFiles'=>[
'driver'=>'local',
'root'=>storage_path('app/uploads'),
]
那你就得 Storage::disk('upFiles')->put($upFile,file_get_contents($path));
'upFiles'=>[
'driver'=>'local',
'root'=>storage_path('app/uploads'),
]
那你就得 Storage::disk('upFiles')->put($upFile,file_get_contents($path));
2017-05-29