Rayhan420 Posted December 11, 2016 Share Posted December 11, 2016 (edited) 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"); }?> Edited December 11, 2016 by Rayhan420 Quote Link to comment Share on other sites More sharing options...
Jacques1 Posted December 11, 2016 Share Posted December 11, 2016 Let's try that again, this time with code tags so that we might actually be able to read what you've written. See the blue “<>” button in the editor? Click on it, paste your code, click “OK”. Then preview the post to make sure it's readable. Finally submit the post. Quote Link to comment Share on other sites More sharing options...
Rayhan420 Posted December 11, 2016 Author Share Posted December 11, 2016 could not found the butyon Quote Link to comment Share on other sites More sharing options...
Rayhan420 Posted December 11, 2016 Author Share Posted December 11, 2016 may i ptovide you the full script.so,that you may fix it Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.