Jump to content

Rayhan420

Members
  • Posts

    17
  • Joined

  • Last visited

Posts posted by Rayhan420

  1. Hellow guys.I have created a script.but it got some errors.Any here with good.php knowledge please help.You see my script is a auto uploader/grabber.Everything working fine except file uploading. You see the site from which I grab content and.files creates a custom link then they redirect to real file.Like http://m.sumirbd.mobi/files/download/id/70370 sends to dl1.sumirbd.mobi/files/gsyn/dload/the_name_of_file.mp3 So first I had to get the real link.But I don't how.So far I have used bellow codes and my site link is http://sumirbd.perfectlifehacker.com

     

     

     

     

     

     

     

     

     

     

     

    <?php include 'config.php'; $id=$_GET['id']; if(!$id){ echo '<br/><h2>Error: wrong path entered.</h2><br/>'; die(); } $h = get_headers('http://m.sumirbd.mobi/files/download/id/'.$id.'',1); $dl = str_replace(' ','%20',$h['Location']); // file name n replace $sname = basename($dl); $sname = str_replace('sumirbd.mobi',''. $site.'',$sname); $sname = str_replace('%20','_',$sname); // dir make $dir = "download"; $dir2 = "$dir/$id"; if(!is_dir($dir)){ mkdir($dir); chmod($dir,0777); } if(!is_dir($dir2)){ mkdir($dir2); chmod($dir2,0777); } // save n copy $save = ''.$dir.'/'.$id.'/'.$sname.''; $file_extension=pathinfo($save, PATHINFO_EXTENS ION); if(!file_exists($save)) { if($file_extension=="mp3"){ if(copy($dl,$save)){ if ($voice == 'ON') { file_put_contents(''.$save.'', file_get_contents(''.$save.''). file_get_conten ts('voicetag.mp3')); } @include 'tag.php'; } } else { copy($dl,$save); } header("Location: /$save"); } else { header("Location: /$save"); }?>

  2. Is there any way to show my user that they are downloading files from my site with php & mysql but they are not & the file would not be saved to my server & link will exist forever,like

     

    http://othersite.com/download/6562/song.mp3
    Would show :

     

    http://mysite.com/download/65m2/song.mp3
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.