Laravel 存储文件上传时损坏

问题描述 投票:0回答:2

所以我一直在我的项目中使用ftp功能

(manually setting $conn_id, making fpt_put($conn_id,...), conn_close etc)

现在我已经在filesystems.php中的我的控制器设置主机用户名密码中为ftp添加了“使用存储”,并将控制器中的所有功能更改为“存储::”类型。

问题是我的文件在上传到存储时被损坏。上传文件成功出现后(我尝试在本地和远程 ftp 存储上上传),但无法打开它们,在放入我的 /storage/app 中的文件上出现 “无法加载图像” 错误从远程存储打开 URL 时出现文件夹和空方块。当我使用 ftp_put(...) 之类的东西时, 一切都运行良好。

我唯一注意到的是尝试打开放置在 /storage/app 中的文件时给出的错误解释:

解释 JPEG 图像文件时出错(不是 JPEG 文件:以 0x2f 开头 0x76)

这意味着什么?我该如何处理这种情况?非常感谢任何可能的帮助!

UPD:看起来上传过程中某处的文件不再是其原始格式的文件,然后被强制重命名回来,这会导致损坏。就像,我上传 .jpeg 文件,发生了一些事情,然后它最后以 .jpeg 保存,不再是 .jpeg 了。还是不知道。

php laravel ftp storage
2个回答
1
投票
好吧,我明白了,问题是我将所有路径留在 () 中,就像它们与 ftp_put() 一样,例如 (to, from),但是

Storage:: 需要内容,而不是路径,在“from”位置 ,所以 Storage::put(to, file_get_contents(from), 'public') 解决了我的问题。


0
投票
这仅供参考,因为她要求采用另一种方法。无需点赞或点赞。

public function store(Request $request){ $this->validate($request, array( // I have done the validations but skip to show it here // OBTAINING THE IMAGES $files = $request->images; // COUNTING HOW MANY WERE RECEIVED $file_count = count($files); // INITIALIZING A COUNTER $uploadcount = 0; foreach($files as $file) { $filename = $file->getClientOriginalName(); $temporary = public_path(). '/uploads/temporary/' . $property->id; if(!file_exists($temporary)) File::makeDirectory($temporary); $temp = $file->move($temporary, $filename); // This is where they temporary stay to be fetched for processing $thumbs = public_path(). '/uploads/thumbs/' . $property->id; if(!file_exists($thumbs)) File::makeDirectory($thumbs); Image::make($temp)->resize(240,160)->save($thumbs . '/' . $filename); // We are setting up another directory where we want to save copies with other sizes $gallery= public_path(). '/uploads/gallery/' . $property->id; if(!file_exists($gallery)) File::makeDirectory($gallery); Image::make($temp)->resize(400,300)->save($gallery . '/' . $filename); $picture = new Picture; $picture->property_id = $property->id; $picture->name = $filename; $picture->save(); $uploadcount ++; } if($uploadcount == $file_count){ Session::flash('success', 'Upload successfully'); return Redirect()->route('property.show', $property->id); } else{ Session::flash('errors', 'screwed up'); return Redirect::to('upload')->withInput()->withErrors($validator); } }
    
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.