You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the meantime, I just added this to my code: <cfheader name="Content-Disposition" value="attachment; filename=myfile.pdf" >
before "return StreamFile(...)"
And the streamed file can be downloaded with the suggested name.
Thank you
The text was updated successfully, but these errors were encountered:
Hello
In the function StreamFile it is not possible to set the filename of the streamed file.
So, if the streamed file is downloaded, it do not have a properly name.
It can be fixed simply adding a header with "Content-Disposition: attachment; filename=myfile.pdf", or similar.
I think that you can add something like
Or simply adding .withHeaders() to this function:
In the meantime, I just added this to my code:
<cfheader name="Content-Disposition" value="attachment; filename=myfile.pdf" >
before "return StreamFile(...)"
And the streamed file can be downloaded with the suggested name.
Thank you
The text was updated successfully, but these errors were encountered: