Connecting Tech Pros Worldwide Help | Site Map

Using PHP to limit download speed

  #1  
Old November 19th, 2005, 06:26 PM
Newbie
 
Join Date: Oct 2005
Posts: 9
:confused::confused:

I have been on the quest to find a php script that can serve files for downloads and limit the speed at which the file is transfered to the user. I want a faster download speed for registered members and a slower speed for guests.

The only other thing I can think of is using the header() function to force a download for the requested file type and stream the file to the user's browser. Then using sleep() or usleep() on a loop until the download completes.

Anyone have any suggestions or ideas?

~Chipgraphics
  #2  
Old November 20th, 2005, 01:59 PM
KUB365's Avatar
Administrator
 
Join Date: Jul 2005
Location: Portland, OR
Posts: 942
Provided Answers: 1

re: Using PHP to limit download speed


Here is a snippet i found on php.net.

Expand|Select|Wrap|Line Numbers
  1. [font=Courier New]<?php
  2.  
  3. $file = "test.mp3"; [/font][font=Courier New]// file to be send to the client
  4. $speed = 8.5; [/font][font=Courier New]// 8,5 kb/s download rate limit
  5.  
  6. if(file_exists($file) && is_file($file[/font][font=Courier New])) {
  7.  
  8.    header("Cache-control: private"[/font][font=Courier New]);
  9.    header("Content-Type: application/octet-stream"[/font][font=Courier New]); 
  10.    header("Content-Length: ".filesize($file[/font][font=Courier New]));
  11.    header("Content-Disposition: filename=$file" . "%20"[/font][font=Courier New]); 
  12.  
  13.    flush[/font][font=Courier New]();
  14.  
  15.    $fd = fopen($file, "r"[/font][font=Courier New]);
  16.    while(!feof($fd[/font][font=Courier New])) {
  17.          echo fread($fd, round($speed*1024[/font][font=Courier New]));
  18.        flush[/font][font=Courier New]();
  19.        sleep(1[/font][font=Courier New]);
  20.    }
  21.    fclose ($fd[/font][font=Courier New]);
  22.  
  23. }
  24. ?> [/font]
  25.  
Link to page and exact code.
  #3  
Old November 29th, 2005, 09:52 PM
Newbie
 
Join Date: Oct 2005
Posts: 9

re: Using PHP to limit download speed


With the constant change of protocols and programming yada yada. I read over what you had suggested and combined a couple of the concepts into one package deal. And it worked on the first try ! :D So, thank you for pointing me in the right direction ! I'll list my source code below.

Here's a function to use PHP to control download bandwith speed:
All original code I borrowed from PHP's online documentation found HERE.

Expand|Select|Wrap|Line Numbers
  1. <?php
  2. function send_file($file, $speed = 100) {
  3.  
  4.     //First, see if the file exists  
  5.     if (!is_file($file)) {
  6.         die("<b>404 File not found!</b>");
  7.     }  
  8.     //Gather relevent info about file
  9.     $filename = basename($file);
  10.     $file_extension = strtolower(substr(strrchr($filename,"."),1));
  11.     // This will set the Content-Type to the appropriate setting for the file
  12.     switch( $file_extension ) {
  13.         case "exe":
  14.             $ctype="application/octet-stream";
  15.             break;
  16.         case "zip":
  17.             $ctype="application/zip";
  18.             break;
  19.         case "mp3":
  20.             $ctype="audio/mpeg";
  21.             break;
  22.         case "mpg":
  23.             $ctype="video/mpeg";
  24.             break;
  25.         case "avi":
  26.             $ctype="video/x-msvideo";
  27.             break;
  28.  
  29.         //  The following are for extensions that shouldn't be downloaded
  30.         // (sensitive stuff, like php files)
  31.         case "php":
  32.         case "htm":
  33.         case "html":
  34.         case "txt":
  35.             die("<b>Cannot be used for ". $file_extension ." files!</b>");
  36.             break;
  37.         default:
  38.             $ctype="application/force-download";
  39.     }
  40.  
  41.     //  Begin writing headers
  42.     header("Cache-Control:");
  43.     header("Cache-Control: public");
  44.     header("Content-Type: $ctype");
  45.  
  46.     $filespaces = str_replace("_", " ", $filename);
  47.     // if your filename contains underscores, replace them with spaces
  48.  
  49.     $header='Content-Disposition: attachment; filename='.$filespaces;
  50.     header($header);
  51.     header("Accept-Ranges: bytes");
  52.  
  53.     $size = filesize($file);  
  54.     //  check if http_range is sent by browser (or download manager)  
  55.     if(isset($_SERVER['HTTP_RANGE'])) {
  56.         // if yes, download missing part     
  57.  
  58.         $seek_range = substr($_SERVER['HTTP_RANGE'] , 6);
  59.         $range = explode( '-', $seek_range);
  60.         if($range[0] > 0) { $seek_start = intval($range[0]); }
  61.         if($range[1] > 0) { $seek_end  =  intval($range[1]); }
  62.  
  63.         header("HTTP/1.1 206 Partial Content");
  64.         header("Content-Length: " . ($seek_end - $seek_start + 1));
  65.         header("Content-Range: bytes $seek_start-$seek_end/$size");
  66.     } else {
  67.         header("Content-Range: bytes 0-$seek_end/$size");
  68.         header("Content-Length: $size");
  69.     }  
  70.     //open the file
  71.     $fp = fopen("$file","rb");
  72.  
  73.     //seek to start of missing part  
  74.     fseek($fp,$seek_start);
  75.  
  76.     //start buffered download
  77.     while(!feof($fp)) {      
  78.         //reset time limit for big files
  79.         set_time_limit(0);      
  80.         print(fread($fp,1024*$speed));
  81.         flush();
  82.         sleep(1);
  83.     }
  84.     fclose($fp);
  85.     exit;
  86. }
  87. ?>
I hope that helps someone out too. Thanks again for pointing me in the right direction !!


~Chipgraphics
  #4  
Old November 29th, 2005, 10:14 PM
KUB365's Avatar
Administrator
 
Join Date: Jul 2005
Location: Portland, OR
Posts: 942
Provided Answers: 1

re: Using PHP to limit download speed


Hey, congrats on getting the results you were looking for.

Thanks for posting the code for people to learn from, that's what this forum is all about.


~KUB
  #5  
Old March 8th, 2006, 03:36 PM
Newbie
 
Join Date: Mar 2006
Posts: 2

re: Using PHP to limit download speed


I used that script from php.net but i have a problem. When i click on download it starts download, but on ~600kB it stops and dont download....
can abybody explain me thit??
  #6  
Old March 8th, 2006, 05:06 PM
KUB365's Avatar
Administrator
 
Join Date: Jul 2005
Location: Portland, OR
Posts: 942
Provided Answers: 1

re: Using PHP to limit download speed


Download issues from their server. Maybe wait for a few hrs and try again.
  #7  
Old March 8th, 2006, 05:19 PM
Newbie
 
Join Date: Mar 2006
Posts: 2

re: Using PHP to limit download speed


Quote:
Originally Posted by KUB365
Download issues from their server. Maybe wait for a few hrs and try again.
it is localhost.....
can it be some option of apache ???
in my webhosting i tried to download 20 MB and it was OK....
  #8  
Old July 5th, 2009, 04:14 PM
Banned
 
Join Date: Jul 2009
Posts: 17

re: Using PHP to limit download speed


Quote:
Originally Posted by Flegma View Post
I used that script from php.net but i have a problem. When i click on download it starts download, but on ~600kB it stops and dont download....
can abybody explain me thit??
it's because php stops your script (your script will timeout).. to avoid it, copy following code in the top of your script:

set_time_limit(99999999);
  #9  
Old September 15th, 2009, 06:25 AM
Newbie
 
Join Date: Sep 2009
Posts: 2

re: Using PHP to limit download speed


I'm pretty new to PHP. Where in this file would I include the name of the file that I want the user to download or is there a different way to set what file to use this script for? Thanks in advance!
  #10  
Old September 15th, 2009, 07:03 AM
Dormilich's Avatar
Moderator
 
Join Date: Aug 2008
Location: Leipzig, Germany
Posts: 3,487
Provided Answers: 9

re: Using PHP to limit download speed


the file name is the function’s first parameter.
  #11  
Old September 15th, 2009, 07:11 AM
Newbie
 
Join Date: Sep 2009
Posts: 2

re: Using PHP to limit download speed


My fault. I meant in chipgraphics code.

I would assume I would input the filename somewhere in this line:

Expand|Select|Wrap|Line Numbers
  1. $filename = basename($file);
If not, where?

Thanks in advance.
  #12  
Old September 15th, 2009, 07:37 AM
Dormilich's Avatar
Moderator
 
Join Date: Aug 2008
Location: Leipzig, Germany
Posts: 3,487
Provided Answers: 9

re: Using PHP to limit download speed


Expand|Select|Wrap|Line Numbers
  1. function send_file($file, $speed = 100) {
as can be deduced from line 5 to 9.
Reply


Similar Threads
Thread Thread Starter Forum Replies Last Post
Limit Download Speed w/ Php bigpoppa answers 1 January 24th, 2009 08:32 AM
Pushing the limit of PHP vs ASP.NET James Macbell answers 9 November 18th, 2005 11:28 AM
Detecting user abort or timeout [download script] mike_j answers 2 July 17th, 2005 11:01 AM
Badndwidth/Download Limit w/ PHP Nicolas C. answers 0 July 17th, 2005 01:52 AM