Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
643 views

How to force download of big files without using too much memory?

I'm trying to serve large zip files to users. When there are 2 concurrent connections, the server runs out of memory (RAM). I increased the amount of memory from 300MB to 4GB (Dreamhost VPS) and then ...
3
votes
2answers
1k views

PHP create file for download without saving on server

Ultimate goal: I want to create a webpage where a user can enter information in forms. With that information I want to create a html file (below called test-download.html) by inserting the information ...
2
votes
3answers
72 views

PHP - Force File Download Script - Not working in IF statement

The bellow code is a page with an IF statement calling the downloadpage. if ($currentpdt<$updatedpdt) echo "updatedpdt is greater than currentpdt."; else echo "updatedpdt is not greater ...
2
votes
3answers
85 views

Redirect body of HTTP response to file

I am programming a service that has to force the download of a file. I know the possibility of setting the HTTP-headers using PHP and then sending the file using the readfile-function. But I think ...
2
votes
1answer
850 views

Codeigniter: download file and redirect

I have a form on this page http://www.obsia.com/products/thassos_wonder_brochure/ On hitting submit, I want it start downloading the file and also get redirected to thank you page. But I can only get ...
2
votes
1answer
770 views

Force download in Google Chrome Extension

I'm writing an Google Chrome extension that lets you download a backup file of your data. I want the user to be able to press a button and a "Save as" dialog box should open and they can save the file ...
2
votes
6answers
2k views

Idiot-proof, cross-browser force download in PHP

I'm using forced download to download mostly zips and mp3s on site i did (http://pr1pad.kissyour.net) - to track downloads in google analytics, in database and to hide real download path: It's this: ...
1
vote
2answers
312 views

PHPWord class in CodeIgniter is not generating correct, throwing errors in word file

Ok, so I'm having difficulty with the PHPWord class which can be found: http://phpword.codeplex.com The weird thing about it is when I use this same code in the "example" file it works fine in ...
1
vote
2answers
823 views

Codeigniter Force download IE

I am having trouble with the download helper in ie..basically I built a site that dynamically creates pdf invoices and pdf proofs in both cases the force download works great in firefox, chrome and ...
0
votes
0answers
41 views

Weird XSendfile permissions(?) issue - force download works ok

our host company has set up and configured XSendfile and we have tested it as working. We have configured the following in the apache config: XSendFile on XSendFilePath /home/beef/shared/ If I do ...
0
votes
0answers
34 views

Force download across different cpanel accounts

ok so, we have a server running Cpanel, and we have set up one account/domain as the central repository for downloadable media. We have put the media directory above the public_html directory (into ...
0
votes
1answer
53 views

php force download shows garbage on screen

I am trying to download a zip file from /tmp folder in Ubuntu. However when I run the Php code it shows garbage text on the browser instead of showing a download box. I tried with a simple text file ...
0
votes
2answers
459 views

How to download file on android with PHP force download

I make an application , this can download file form server. use this code >>> public int startDownload(String url, String filename) { // create url connector URL u; byte[] buffer = new byte[1024]; ...
0
votes
1answer
146 views

Force download of large files on a shared server

I am trying to add a download link to a large video file (approx 300MB) on someone's site but unfortunately they're on shared hosting (i've told them they will have to upgrade if they get many people ...
0
votes
5answers
1k views

Force Download an Image Using Javascript

I want to know if there is any way to make a script using Javascript/jQuery to download(open a download dialog) a image so the browser won't just show it.
0
votes
1answer
185 views

Problems With Forcing Download of a PDF File

I have the following function to force download a file: static public function download($file, $options=array()) { $content = (isset($options['content'])) ? $options['content'] : ''; ...
0
votes
1answer
449 views

PHP readfile for force downloading files and images

I want to send files through php using readfile() What i've noticed is that readfile forces a download, but what if i want to show an image in the browser and not force a download? Would readfile ...
-2
votes
2answers
263 views

send zip file to browser / force direct download

i created with php zip ( http://php.net/manual/de/book.zip.php ) a zip file now i have to send it to the browser / force a download for it.