Intervention \ Image \ Exception \ NotWritableException:无法在第143行上将图像数据写入路径Image \ Image.php

时间:2019-08-08 07:47:09

标签: laravel intervention

我正在使用图像干预在Laravel中保存base64图像。在cpanel上工作正常。但是,当我更换服务器时,会出现上述错误。

我已经检查了权限和图像文件夹的存在。我不知道该怎么办请帮忙。

           $file = $request->profile_pic;
           $fileNewName = substr(md5(rand()),0, 100).'.' . explode('/', 
           explode(':', substr($file, 0, strpos($file, ';')))[0])[0]; 
           $path = public_path('appImages/').$fileNewName;

       \Image::make($file)->save($path);

0 个答案:

没有答案