Can anybody explain how to download file
if file path /frontend/web/uploads.
file name is : sample.pdf
actual link :/frontend/web/uploads/sample.pdf.
what are the code for downloading the given file.
Can anybody explain how to download file
if file path /frontend/web/uploads.
file name is : sample.pdf
actual link :/frontend/web/uploads/sample.pdf.
what are the code for downloading the given file.
For download you can try:
$path = Yii::getAlias('@webroot') . '/uploads',
$file = $path . '/sample.pdf';
if (file_exists($file)) {
Yii::$app->response->sendFile($file);
}