Tagged Questions
2
votes
2answers
3k views
PHP headers forced download and then redirect
Right now I have a php form that forces a download of a zip.
How can I redirect to another page and also force that download (where the download is actually php zip)?
Would I use javascript?
any ...
1
vote
1answer
697 views
Codeigniter force download CSV file bug
Here's the problem
I wanted to convert my data into csv format and download it. everything is fine, until the csv file that i had downloaded and there's a little bug on the file which there will be a ...
1
vote
2answers
371 views
Forcing Download from s3 amazon servers
I've been in a development of new web application where it relay on S3 amazon servers as storage system, and Codeiginter as PHP framework. What I need is to force download of the file when download ...
1
vote
1answer
507 views
how to force download dialog for a text file on the server?
how to force download dialog for a text file on the server?
when i used the blow code so the dialog window was for aspx file ... (why?)
string FileBankPhysicalFolder = ...
1
vote
1answer
269 views
PHP Download File with Include
How can I use PHP's include function to include a file and then modify the headers so it forces - at least that's how it's called - browsers to download ITSELF (the PHP file). Is it possible to also ...
1
vote
3answers
2k views
PHP: Force file download and IE, yet again
Folks, I know there have been lots of threads about forcing the download dialog to pop up, but none of the solutions worked for me yet.
My app sends mail to the user's email account, notifying them ...
0
votes
0answers
31 views
Force text download not working on servlet
I'm writing a servlet which should send a text file to the client, forcing the file to be downloaded rather than displayed on the browser. The relevant code is (from a try-catch block with more code):
...
0
votes
5answers
155 views
PHP Force Download Help
I've been wrestling around with this for awhile now. I am trying to make it so when a user click a link it will force a download. Here's my code so far:
<?php
function Download()
{
$fullpath = ...
0
votes
3answers
568 views
Force the Download File dialog Not Working - ASP.NET C#
I am trying to implement force download file dialog in my ASP.NET C# application. The files I'd like to force download are media files not locally available available on the web server but are being ...
0
votes
1answer
308 views
Forcing download in Safari keeps window open
I'm forcing a download on links using this code from the PHP.net site:
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: ...
0
votes
3answers
462 views
PHP Force File Download Code - Error
i am using the following code
<?php
$rFile = $_GET['sfile'];
$rExt = $_GET['ext'];
header("Content-disposition: attachment; filename=".urlencode( $_GET['sfile'] ).".".$_GET['ext']);
...
0
votes
2answers
164 views
htaccess set specific file to download only
I'm working on developing a javascript framework and I don't want anyone to be able to link to the "nightly build" .js file directly on the server.
my file is at:
...
0
votes
2answers
173 views
PHP: force an image download from above directory root?
I'm attempting to force a download of an image that is in a directory above my website root. The download happens ok, and the correct filename is saved. However, the end-file is not a valid image ...
0
votes
3answers
3k views
PHP Force download return corrupted file!
Hi I'm currently working on some php - zend framework project on my osx - apache. The problem is when ever I want to force the download of some files using my php application the downloaded files is ...