[hot] New working MP3 Search engine that you have always wanted

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

    #31
    Originally posted by homici View Post
    How to edit a template ?
    with a text editor

    Comment


      #32
      There are textarea with blank, I dont know what can I do, how to edit it, can you give me example ?

      Comment


        #33
        Originally posted by homici View Post
        There are textarea with blank, I dont know what can I do, how to edit it, can you give me example ?
        Example ? well...





        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


          #34
          <textarea>textarea is no longer blank</textarea>

          Comment


            #35
            There no reply huh? :o

            Comment


              #36
              please upload .sql file. i'm stuck in installing database.

              stuck at this.

              Writing files and installing sql tables, please wait..

              Comment


                #37
                Master help me please , how to solved this code if soundcloud no result ? thanks
                Code:
                 
                if($config['soundcloud']){
                        
                        //require_once ROOT_DIR . '/libs/outer_api/soundcloud/Services/Soundcloud.php';
                        
                        //$client = new Services_Soundcloud($config['soundcloud_api'], NULL);
                        
                        $start = ($page-1)*20;
                        
                        //$mp3_search = $client->get('tracks', array('q' => $keyword, 'license' => 'cc-by-sa'));
                        
                        $mp3_search = get_content("http://api.soundcloud.com/tracks/?client_id=e9bc5cfa694a55f70a5b1067a2722a2a&limit=20&q==" . $keyword);
                        
                        if ($mp3_search)
                        {
                            $mp3_search = simplexml_load_string($mp3_search);
                            
                            foreach ($mp3_search as $result) {
                                
                                $song_title = $result->{'title'};
                                
                                $mp3_page_url = $result->{'uri'} . "/stream";
                                
                                $mp3_page_url = $db->safesql($mp3_page_url);
                                
                                $hash = gen_uuid($mp3_page_url);
                                
                                $song['id'] = $hash;
                                
                                $song['source'] = 9;
                                
                                $song['mp3_url'] = $mp3_page_url;
                                
                                $song['play_url'] = play_url($song['id'], $song['source'], $song_title);
                                
                                $song['song_title'] = $song_title;
                                
                                if($song_title) $db->query("INSERT IGNORE INTO tan_cache SET hash='$hash', url='$mp3_page_url'");
                                
                                if($song_title) $mp3s[] = $song;
                                
                            }
                        }
                        
                    }

                Comment

                Working...
                X