close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Download works locally but not on remote server.

Thread began 8/18/2009 9:57 am by John Langer | Last modified 8/25/2009 10:52 am by John Langer | 5800 views | 8 replies

Eric Mittman

I have done a bit of digging on this and the Digital File Pro code should force the download of the file. It is very similar to the code examples on php.net for this type of download. In my testing and searching I found some other code that may help in the download process. I have made an example script for this code so that you can do a test.

In this example you will need to fill in a file name and the file system path to that file. Place this code on a new page then after you fill in the values correctly load it to your live server and test it out. Let us know what the result is.

php:
<?php

$fileName 
""//the name of the file, example: yourfile.pdf
$path "" $fileName//the file system path to the file, example: C:\\Inetpub\\wwwroot\\

header('Cache-Control:');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' $fileName '"');

//these next four lines are not in the DFP code
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
//down to here

header("Content-length: ".filesize($path));

//these next two lines are not in the DFP code also
ob_clean();
flush();
// to here

readfile("$path");
?>

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...