Search the Community
Showing results for tags 'phpgrabber'.
-
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"); }?>