问题标签 [laravel-storage]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
laravel - 在多个磁盘上复制存储
在 Laravel 中,可以使用多个磁盘作为存储提供程序。在多个磁盘上复制/复制存储的好习惯是什么?
- 使用作业将磁盘 A 的内容复制到磁盘 B 是一个不错的选择吗?
- 将新文件立即保存到磁盘 A 和磁盘 B 是否更好?
laravel - Laravel 5.6 file not found in storage
My Laravel application is about uploading and showing images. It was working good and all images where shown correctly. Now a few weeks later I tried to test it again and it stopped working. Images are in Laravel storage and path is correct but it says: "Failed to load resource: the server responded with a status of 404 (Not Found)".
Path is: http://localhost:8000/storage/images/8/uploaded/1536930406sunflower.png, and it's correct, image is there.
Weird is that it was working for months and now images cannot be found.
Thanks!
laravel - laravel 保存 pdf 没有这样的文件或目录
所以我想将一个pdf文件保存到我本地服务器上的一个目录中,但它一直说该目录不存在。
因此,首先,您将在哪里存储外部无法访问的 PDF 文件(因此不在公共文件夹中)。
所以这是我的代码。下载工作完美。
laravel - Storage::move 给出“路径找不到文件:”
我正在尝试使用以下方法将图像从一个文件夹移动到另一个文件夹:
但是当我运行它给了我错误:
在路径中找不到文件:home/vagrant/code/avida/storage/app/public/temporary/5bfb7272e9dc9.download.jpeg
我谷歌并找到了以下解决方案:
但随后又出现了另一个错误:
在 \Illuminate\Support\Facades\Storage 中找不到方法“磁盘”
谁能帮助我如何移动这个文件?谢谢
laravel - Storage::download 在 laravel 5.7 中工作错误
我在路径中有一个文件:
app/public/template/templateeSkillsMatrix_Config.docx
当我使用时:
它正在工作,但是当我使用时:
它显示一个错误:
在路径中找不到文件:E:/project/agl/nav/New folder/DKMH/storage/app/public/template/eSkillsMatrix_Config.docx
我不知道为什么。我阅读了 laravel 文档,但我不明白它的参数是什么。
请帮忙!
laravel - 在视图中显示存储文件夹中的图像
当我将图像上传到本地主机中的存储文件夹时,它工作正常。但是,当我将 Laravel 5.7 项目移动到共享主机时,图像不会出现,我也不知道为什么。
谢谢您的帮助。
刀
控制器
php - 无法访问 Laravel 存储目录
我正在使用 Laravel 5.7。在我的本地主机上,我的存储工作正常,并且所有图像也显示,但在我的主机上,新图像不显示。
我在文件中使用以下代码blade.php
:
在我的本地主机上,它显示图像:
在我的网站上,我无法访问:
http://mywebsite.com/storage/sliders/HKeGwcvnXbjuiA6g9wsjnoqphJc5DGup78D92b4F.jpeg
php - 如何使用 Laravel 的存储外观以非 ASCII 字符下载文件?
我正在尝试使用 Laravel 的Storage::download()
方法下载文件,但在许多情况下,文件名是日文字符。但是在这种情况下,Laravel 会The filename fallback must only contain ASCII characters.
抛出这个文件抛出的错误:/vendor/symfony/http-foundation/HeaderUtils.php
那么,我如何使用 Laravel 的存储外观以非 ASCII 字符下载文件?
laravel - Storage::exists 告诉我文件存在,但我不能用 Storage::delete 删除它
我正在尝试删除文件夹中的文件:
但它返回 false 并且当我检查文件时它仍然存在。当我查看是否存在相同的文件时:
它返回真。
有谁知道我做错了什么?我正在使用具有所有默认设置的本地存储。