Author: Padroni Language: php
Description: Not specified Timestamp: 2015-02-11 05:01:37 -0500
View raw paste Reply
  1. <php
  2. define('BUFSIZ', 4095);
  3. $url = '';
  4. $rfile = fopen($url, 'r');
  5. $lfile = fopen(basename($url), 'w');
  6. while(!feof($rfile))
  7. fwrite($lfile, fread($rfile, BUFSIZ), BUFSIZ);
  8. fclose($rfile);
  9. fclose($lfile);
  10. ?>
  11.  
  12. # This file is created on the receiving server.  Add the URL to your .zip file in $url
  13. # Name the file whatever and save.  Open the file in a browser and once it has finished loading
  14. # the file transfer will be complete.
View raw paste Reply