我正在使用图像干预在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);