cakePHP File Download was not found or not readable(cakePHP 文件下载未找到或不可读)
问题描述
我已经挣扎了一个小时试图解决这个问题.我用它从 app/uploads/
目录下载文件.它说找不到目录或不可读.然而我检查了它,它也在那里使用 $file['File']['filename']
文件.我想知道我在这里遗漏了什么.?
I've been struggling now for an hour trying to fix this. I used this to download file from app/uploads/
directory. It says the directory not found or not readable. Yet i checked it and it was there also the file using $file['File']['filename']
. I want to know what I am missing here.?
$file = $this->File->findById($id);
$extension = pathinfo($file['File']['filename'],PATHINFO_EXTENSION);
$this->response->file('uploads'.DS.$file['File']['filename'], array(
'download' => true,
'id' => $file['File']['filename'],
'name' => $file['File']['filename']
));
$this->response->type($extension);
return $this->response;
推荐答案
确保您没有其他名为 File 的模型.如果是这样 - 它显然会覆盖 cakephp 的核心实用程序/文件模型.
Make sure you have no other model named File. If so - it apparently overwrites the cakephp's core Utility/File model.
这篇关于cakePHP 文件下载未找到或不可读的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:cakePHP 文件下载未找到或不可读
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01