ตามคำตอบที่ Marius ให้
class Download extends \Magento\Framework\App\Action\Action
{
protected $resultRawFactory;
protected $fileFactory;
public function __construct(
\Magento\Framework\Controller\Result\RawFactory $resultRawFactory,
\Magento\Framework\App\Response\Http\FileFactory $fileFactory,
\Magento\Backend\App\Action\Context $context
) {
$this->resultRawFactory = $resultRawFactory;
$this->fileFactory = $fileFactory;
parent::__construct($context);
}
public function execute()
{
try{
$fileName = 'FileName'; // the name of the downloaded resource
$this->fileFactory->create(
$fileName,
[
'type' => 'filename',
'value' => 'relative/path/to/file/from/basedir'
],
DirectoryList::MEDIA , //basedir
'application/octet-stream',
'' // content length will be dynamically calculated
);
}catch (\Exception $exception){
// Add your own failure logic here
var_dump($exception->getMessage());
exit;
}
$resultRaw = $this->resultRawFactory->create();
return $resultRaw;
}
}
ไม่มีสิทธิ์ที่ถูกต้อง (แม้ว่าจำเป็นต้องมีการอ่านที่นี่วีโอไอพีตรวจสอบสิทธิ์ในการเขียน) จะส่งผลให้เกิดข้อผิดพลาดแปลก ๆ "ไซต์หยุดทำงานหรือถูกย้าย" หรือ smth เช่นนั้น
เป็นมูลค่าการแอบสูงสุดที่ตรรกะใน $ fileFactory-> สร้าง () เช่นกัน