Tagged Questions

2
votes
2answers
567 views

PHP or HTML/CSS solution for forcing line breaks in table

I have a table filled with user generated text. The text spans for as much as the TD allows, however if the input is a string made of a long string with no breaking chars (white space, dash etc) it ...
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
2answers
374 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
3answers
188 views

Does anyone know of a good script to force file downloads and yet protect download links on a PHP server?

I tried using a free script that I found on the Internet but it is giving me problems with Windows users (even though they are using IE 8, so it's not an option for me to ask them to upgrade their ...
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
3answers
36 views

Force Download Files Broken Headers wrong?

if($_POST['mode']=="save") { $root = $_SERVER['DOCUMENT_ROOT']; $path = "/mcboeking/"; $path = $root.$path; $file_path = $_POST['path']; $file = $path.$file_path; if(!file_exists($file)) { ...
0
votes
5answers
156 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
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
463 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
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 ...