moozzl.com like - mp3 search engine

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

  • Anshul
    replied
    Originally posted by GumSlone View Post
    actually you dont need the download.php for your mobile version, after you done the mobile version, post the script here so i can create the download php for it.
    ok done but i need download.php

    Leave a comment:


  • GumSlone
    replied
    Originally posted by modfiles View Post
    file download.php is missing?
    actually you dont need the download.php for your mobile version, after you done the mobile version, post the script here so i can create the download php for it.

    Leave a comment:


  • Guest
    Guest replied
    agreed . im not having any luck with this :confused:

    Leave a comment:


  • modfiles
    replied
    file download.php is missing?
    Last edited by modfiles; 13.05.09, 22:04. Reason: i posted in wrong thread

    Leave a comment:


  • GumSlone
    replied
    remove all the java code, you dont need it for mobile version.

    @modfiles you can include the wraper.php file

    Leave a comment:


  • modfiles
    replied
    my only problem in this is
    Code:
    <script type="text/javascript" language="javascript">
       http_request = new Array();
       function makeRequest(url, parameters, xId) {
          if (window.XMLHttpRequest) { // Mozilla, Safari,...
             http_request[xId] = new XMLHttpRequest();
             if (http_request[xId].overrideMimeType) {
                http_request[xId].overrideMimeType('text/html');
             }
          } else if (window.ActiveXObject) { // IE
             try {
                http_request[xId] = new ActiveXObject("Msxml2.XMLHTTP");
             } catch (e) {
                try {
                   http_request[xId] = new ActiveXObject("Microsoft.XMLHTTP");
                } catch (e) {}
             }
          }
          if (!http_request[xId]) {
         document.getElementById(xId).innerHTML = 'Result not available';
             return false;
          }
          http_request[xId].onreadystatechange = function() {
              if (http_request[xId].readyState == 4) {
                    document.getElementById(xId).innerHTML = http_request[xId].responseText;
              }
            }
          http_request[xId].open('GET', url + parameters, true);
          http_request[xId].send(null);
       }
    function popitup(url) {
        newwindow=window.open(url,'name','height=150,width=300');
        if (window.focus) {newwindow.focus()}
        return false;
    }
    </script>
    and heres another one
    Code:
    <script type="text/javascript" language="javascript">
      makeRequest('wrapper.php?1&','search=<?=$srch?>&source=<?=$source?>&page=<?=$_GET[page]?>',
    '<?=$source?>');
    </script>
    i dunno anythin bout javascript :p
    My edit works fine with third party browser but default browser dont cause it didnt support javascript. lol
    did anyone manage to remove Loading Please Wait for a While..... and instead of that making request from a javascript, it will return a result automatically?
    Last edited by modfiles; 13.05.09, 14:43.

    Leave a comment:


  • Guest
    Guest replied
    if someone converts this script please post it im having no luck trying but i guess im gna carry on maybe i will be able to get somewhere and if i do i will post it but i doubt it so dont even count on me

    Leave a comment:


  • GumSlone
    started a topic moozzl.com like - mp3 search engine

    moozzl.com like - mp3 search engine

    Here is a script which is very similar to the script which im using at moozzl.com it has all the functions as at moozzl.com, the only ththing you need to do is to convert it to work with mobiles.

    [HIDE-THANKS]
    Code:
    http://rapidshare.com/files/232444954/hotsmusic.com.rar
    http://depositfiles.com/files/i72kf67w1
    [/HIDE-THANKS]
Working...
X