Laravel中的图像上传错误

时间:2017-09-09 14:20:22

标签: php image laravel

我正在尝试将图片上传到数据库,但是它给了我:无法将图像数据写入路径(/ Applications / XAMPP / xamppfiles / htdocs / agrohelp / public / uploads / buletine / 1504966392.jpeg)" 错误

这是代码:

$buletin=$request->file('buletin');
$filename = time().'.'.$buletin->getClientOriginalExtension();
Image::make($buletin)->resize(300,300)->save(public_path('/uploads/buletine/'.$filename)); 

$employee->buletin=$filename;

1 个答案:

答案 0 :(得分:1)

尝试这样:

检查权限:   - 许可图片/文章777

Image::make($image->getRealPath())->resize(300,300)->save('public/uploads/bulentine'.$filename);

赋予权限:

使用CHMOD

  

您的递归文件

chmod -R 777 foldername or pathname
  

对于非递归文件

chmod 777 foldername or pathname