General Programming Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingGeneral Programming Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old March 21st, 2003, 03:32 PM
metazero metazero is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Posts: 2 metazero User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
One-Time Download URLs?

I have recently read this article on DevShed.com and would like to know if anyone could tell me how i can implement this to download files, rather than displaying pages. For example, i want to generate a unique URL that will then let someone download a file without giving away the files location. Can anyone point out for me how to do this?

Thank You

Reply With Quote
  #2  
Old March 21st, 2003, 08:01 PM
jpenn jpenn is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Location: Washington, DC
Posts: 317 jpenn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 3 sec
Reputation Power: 7
Quote:
would like to know if anyone could tell me how i can implement this to download files, rather than displaying pages.

Read the file in using the file system functions and them just stream the download to the user.
PHP Code:
if ( $user_logged )
{
    
$file 'dir/the_file.zip';
    
$fp fopen$file'r' );
    
$file_data fread$fpfilesize$file ) );
    
fclose$fp );
    
clearstatcache();
    
$filename 'name_of_file_you_want_it_to_be.zip'// needs correct extension
    
header"Content-type: application/octet-stream" );
    
header"Content-disposition: attachment; filename=$filename" );
    echo( 
$file_data );



I didn't read the article, but I think this is what you are looking for...
__________________
~ Joe Penn

We work for free to help make this a valuable resource on the internet. Do you appreciate the help - did we provide help that will help you prosper and help that has contributed to sharpening your current skill set?

Show your appreciation and purchase something from our Amazon Wishlist's - it's simple and a great way to say thank you.




Reply With Quote
  #3  
Old March 22nd, 2003, 03:22 AM
metazero metazero is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Mar 2003
Posts: 2 metazero User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Quote:
Originally posted by jpenn

Read the file in using the file system functions and them just stream the download to the user.
PHP Code:
if ( $user_logged )
{
    
$file 'dir/the_file.zip';
    
$fp fopen$file'r' );
    
$file_data fread$fpfilesize$file ) );
    
fclose$fp );
    
clearstatcache();
    
$filename 'name_of_file_you_want_it_to_be.zip'// needs correct extension
    
header"Content-type: application/octet-stream" );
    
header"Content-disposition: attachment; filename=$filename" );
    echo( 
$file_data );



I didn't read the article, but I think this is what you are looking for...


This definately helps, thanks a lot.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingGeneral Programming Help > One-Time Download URLs?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
Stay green...Green IT