Lagu.Mobi V2 - Mobile Mp3 Search Engine Script

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Lagu.Mobi V2 - Mobile Mp3 Search Engine Script

    From the last time I promote this script on this forum,
    I think many of you have recognize my mobile mp3 search engine script very well.
    Thanks to all that spread my script to all over the world.

    Here comes the V2 of Lagu.mobi
    Not much changing made to this version but I hope this will, at least satify you on making your own mobile mp3 search engine.

    - All the auto charts have been repaired.
    - 2 Source using 4shared. 4Shared API and Google.
    - File size added at the end of the song name

    Why using Google? With this tweak, I use the exact match result in Google and bring the result from 4shared that have been taken out
    such as "muse", "eminem" etc etc. With google + 4shared result, the 4shared result almost complete.

    If you want to remove link + copyright on the footer, please do contact us at lagu.mobi [at] protecteddomainservices.com
    Attached Files

    #2
    excellent script ! thanks
    It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
    ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
    ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
    キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

    Comment


      #3
      Originally posted by metulj View Post
      excellent script ! thanks
      No problem. Nothing much I could do really.
      Hope everyone will like it.

      Comment


        #4
        I like your idea using google search on 4shared ... !
        Thnak you !
        Unamos los corazones,hoy todos somos multicolores!

        Comment


          #5
          the only thing i dint like was that every damn
          file gets downloaded with name ''preview.mp3''
          so i had to click few times in files to fix that LOL
          demo
          Last edited by metulj; 30.01.12, 21:49.
          It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
          ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
          ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
          キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

          Comment


            #6
            Originally posted by metulj View Post
            the only thing i dint like was that every damn
            file gets downloaded with name ''preview.mp3''
            so i had to click few times in files to fix that LOL
            demo

            Yooo Now ur title name working ... Plz share ur Update script Metulji ...

            Comment


              #7
              Originally posted by Aed Natales Kalort View Post
              From the last time I promote this script on this forum,
              If you want to remove link + copyright on the footer, please do contact us at lagu.mobi [at] protecteddomainservices.com
              Yeah, suure people won't simply take out the copyright in the future... because people on here never do that.

              Anywayz, nice script! Thanks for sharing!
              whatmp3.name - search mp3 on mobile

              Comment


                #8
                Originally posted by jas_in_the_end View Post
                Yooo Now ur title name working ... Plz share ur Update script Metulji ...
                The title name working fine with Lagu.mobi V1 dl.php file. You can modify code in V2 dl.php too.
                Simply disable line of header, and uncomment all code below it. or just copy code below and replace it in dl.php file

                PHP Code:
                <? 
                $link = $_GET['url'];
                //header("Location:$link");
                $name = $_GET['name'];
                $name = str_replace(' ', '_', $name); 
                header("Content-Disposition: attachment; filename=$name");
                header("Content-type: audio/mpeg;\r\n");
                readfile(str_replace(' ', '_', $link));
                ?>
                The only problem is, when you start to get high traffic, example 3k-5k per day..
                It will start to download dummy mp3. you will get all the mp3 with the size of 616kb and cant be play.
                4shared has set a limit on this and I dont know the true value limit / viewing from server per hour/day.

                Comment


                  #9
                  Originally posted by Aed Natales Kalort View Post
                  The title name working fine with Lagu.mobi V1 dl.php file. You can modify code in V2 dl.php too.
                  Simply disable line of header, and uncomment all code below it. or just copy code below and replace it in dl.php file

                  PHP Code:
                  <?
                  $link = $_GET['url'];
                  //header("Location:$link");
                  $name = $_GET['name'];
                  $name = str_replace(' ', '_', $name); 
                  header("Content-Disposition: attachment; filename=$name");
                  header("Content-type: audio/mpeg;\r\n");
                  readfile(str_replace(' ', '_', $link));
                  ?>
                  The only problem is, when you start to get high traffic, example 3k-5k per day..
                  It will start to download dummy mp3. you will get all the mp3 with the size of 616kb and cant be play.
                  4shared has set a limit on this and I dont know the true value limit / viewing from server per hour/day.
                  also you have to moderate line with filename...

                  PHP Code:
                  <?php
                  $link 
                  $_GET['url'];
                  //header("Location:$link");
                  $name $_GET['name'];
                  $name str_replace(' ''_'$name); 
                  header("Content-Disposition: attachment; filename=$name.mp3");
                  header("Content-type: audio/mpeg;\r\n");
                  readfile(str_replace(' ''_'$link));
                  ?>
                  then it'll work perfect ;)
                  but ye, keep in mind 4shared daily/weekly/monthly limit...
                  Last edited by metulj; 15.06.12, 14:32.
                  It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                  ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                  ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                  キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                  Comment


                    #10
                    PHP Code:
                    <? 
                    ///////////dl.php
                    ///http://dloadmax.com/mp3
                    $link = $_GET['url'];
                    $name = $_GET['name'];
                    $pagelink = urlencode($name);
                    header("Content-type:audio/mpeg");
                    header("Content-Disposition:attachment;filename=dloadmax.com _mp3_$pagelink.mp3");
                    readfile($link);
                    ?>
                    *** Added - metulj ***
                    pretty much same is posted on previous page...
                    if you woul care to take a look, you would already knew that...
                    Last edited by metulj; 22.01.12, 18:14.

                    Comment


                      #11
                      Thank for share ! )

                      Comment


                        #12
                        Originally posted by jas_in_the_end
                        Lagu.mobi - Free Mobile Mp3 Downloads
                        Search not working ...tells [ No idea what you are looking for? Try our fast link below.. ]
                        Share full script with site link ..
                        Metul brother may u solved this problem ..
                        give... give... give... give... give... ???
                        NO !
                        Everything you need, is posted IN THIS TOPIC !
                        It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                        ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                        ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                        キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                        Comment


                          #13
                          Originally posted by jas_in_the_end
                          Lagu.mobi - Free Mobile Mp3 Downloads

                          Search not working ...tells [ No idea what you are looking for? Try our fast link below.. ]

                          Share full script with site link ..

                          Metul brother may u solved this problem ..
                          you are using our version 1 script.
                          just download at the 1st page and replace all the files.

                          a little update fix on bug (size).
                          open lagu.4shared2.server.php

                          find line 18:
                          PHP Code:
                          $site openurl('http://www.google.com/cse?as_q=site:4shared.com/mp3/+"KB"+'.$ser.'&start='.$p.''); 
                          replace with:
                          PHP Code:
                          $site openurl('http://www.google.com/cse?as_q=site:4shared.com/mp3/+"KB"+"File%20name:"+'.$ser.'&start='.$p.''); 
                          find line 35,36,37:
                          PHP Code:
                          $size extstr3($res,'<span class="s">','<b>KB');
                          $size substr($size, -5);
                          $size str_replace('br>','xxxx',$size); 
                          replace with:
                          PHP Code:
                          $size extstr3($res,'<span class="s">','<b>KB</b>');
                          $size str_replace('<br>  ','',$size);
                          $size substr($size, -5); 
                          this will fix bugs on size.
                          Im not very good in coding, if someone knows better on using preg match or anything else,
                          please post it here.

                          Comment


                            #14
                            thanks for sharing mates.

                            Comment


                              #15
                              nice script i want to modified it i want to put fb like button but i havent no ide where should i put the code and i want to put an advertisement that will rotate earch visitors who view but i havent no ide someone who can tell mo how.

                              Comment

                              Working...
                              X