你的 bug -- Internal GD font () not available. Use only 1-5. laravel 5.5 验证码

来源:互联网 发布:php参考文献近两年 编辑:程序博客网 时间:2024/05/29 16:28

laravel 5.5 刚出,composer 包有问题很正常

验证码 mewebstudio/captcha
Internal GD font () not available. Use only 1-5.

问题原因:laravel 5.5 中 Filesystem::files 不再返回绝对路径。
目前解决方案:

# vendor/mews/captcha/src/Captcha.php 218 行添加代码:$this->fonts = array_map(function($file) {    return $file->getPathname();}, $this->fonts);
阅读全文
0 0
原创粉丝点击