Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Need help with download script please.
Old 10-01-2004, 08:08 PM Need help with download script please.
Average Talker

Posts: 17
Trades: 0
Hi,

I have some problems with a script I'm working on. The purpose of the script is to launch a download of a specific file, but the problem is the script won't work and i'm getting these error messages.
Quote:
Warning: Cannot modify header information - headers already sent by
This is the script.

Code:
$produitFilename = "filename.doc";
$fullPath    = getcwd()."/download/".$produitFilename;
if ($fd = fopen ($fullPath, "rb")) {
   $fsize    =filesize($fullPath);
   $fname    = basename ($fullPath);

   header("Pragma: ");
   header("Cache-Control: ");
   header("Content-type: application/octet-stream");
   header("Content-Disposition: attachment; filename=\"".$fname."\"");
   header("Content-length: $fsize");

   fpassthru($fd);

Any advice will be greatly appreciated.
__________________
COLOR=Black]
Please login or register to view this content. Registration is FREE
[/COLOR]

Please login or register to view this content. Registration is FREE
redghost is offline
Reply With Quote
View Public Profile Visit redghost's homepage!
 
 
Register now for full access!
Old 10-02-2004, 07:32 PM
bman's Avatar
Skilled Talker

Posts: 85
Location: USA
Trades: 0
This might work,

add a outputbuffer:

ob_start(); at the start of the script if you art using sessions just under the session_ start.

And
ob_end_flush(); at the end of the script

Hope it works for you!
bman is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Need help with download script please.
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.18547 seconds with 12 queries