moozzl.com like - mp3 search engine

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

  • Guest
    Guest replied
    what is the problem with this script ? it just refreshes all the time when you try download

    Leave a comment:


  • modfiles
    replied
    and now this error appears :confused:
    Fatal error: Maximum execution time of 60 seconds exceeded in Snoopy.class.php on line 894

    but cant find where to set is to longer max execution time. And base on the time before the download appear in moozzl, it doesnt take more than 10sec.

    Leave a comment:


  • GumSlone
    replied
    download snoopy class from here http://sourceforge.net/projects/snoopy/

    Leave a comment:


  • modfiles
    replied
    and now i get this
    InvalidArgumentEither the Signature query string parameter or the Authorization header should be specified, not bothBasic aG90c211c2ljOmZhcmVhc3Q5MQ==Authorization57823C469 895D67F6cZkf2eVxfhFEVwpTUz2HN48yA4obtjKg28Ox2Rd15b cpYAq1kfv/lCkYKnPoKi2

    Leave a comment:


  • Anshul
    replied
    change

    $link = '&src=jamglue&link='.$download.'&name='.$name;

    to

    $link = "url={$download}";


    in sources/jamglue/index.php

    Leave a comment:


  • modfiles
    replied
    oh my.. its not downloading the file but instead, signing in to jamglue site :D

    Leave a comment:


  • GumSlone
    replied
    download.php only for jamglue source

    download.php only for jamglue source

    PHP Code:
     include "Snoopy.class.php";
    $snoopy = new Snoopy;
    $snoopy->agent "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)";
    $snoopy->referer "http://www.google.com/";

    $submit_url "http://www.jamglue.com/sign_in";
        
        
    $submit_vars["name"] = "hotsmusic";
        
    $submit_vars["password"] = "fareast91";
        
    $submit_vars["url"] = $_GET['url'];
        
    $submit_vars["commit"] = "Sign in";
            
        if(
    $snoopy->submit($submit_url,$submit_vars))
        {
            while(list(
    $key,$val) = each($snoopy->headers))
                
    header ($val);
            
        }
        else
            echo 
    "error fetching document: ".$snoopy->error."\n";    
            
        print 
    $snoopy->results

    Leave a comment:


  • modfiles
    replied
    ok, this is how far ive gone already in this script. havent check it though if its a valid page coz at the moment, thats not my concern. lol. but work in my phone using opera brower :D
    javascript and ajax havent remove yet. i dunno how to make it work if i remove those. lol
    and if you see the download link. its still a link from original script coz i cant find download.php file
    anyone who make it better. please be generous and post it here :p
    Attached Files

    Leave a comment:


  • GumSlone
    replied
    here is a simplyfied index.php
    PHP Code:
    <?
    echo '<?xml version="1.0"?>';
    ?>
    <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Search music</title>
    </head>

    <body>
    <form method="GET" action="audio/index.php">
    <div>
    <input name="search" type="text" size="60"  style="background-color:#CCCCCC; color:#990000; font-weight:bolder" />
    <input type="submit" value="Search Audio !" style="background-color:black; color: #FFFFFF; font-weight: bolder; font-size: 14px; margin-left: 10px;" />
    <input type="radio" name="source" value="all" checked style="visibility:hidden" />
    </div>
    </form>
    <div>
    <span style="font-size: 9pt; text-align: justify; ">
    <? include 'audio/latestsearches.php'; ?>
    </span>
    </div>
    </body>
    </html>

    Leave a comment:


  • strikingv
    replied
    Originally posted by modfiles View Post
    its not that easy for someone whos still learning (like me. lol) especially with those ajax and javascript. its like new thing for me the fact that php is still a new thing. jumping to another scripting language is another story again anyway, i still keep trying to do it. just keep on thinking how to make it work witout those weird new scripting language
    Drop by Drop makes the Ocean.
    Lets share the Converted version :D

    Leave a comment:


  • modfiles
    replied
    Originally posted by Anshul View Post
    try it urself trust me it will not take more then half an hour lol
    its not that easy for someone whos still learning (like me. lol) especially with those ajax and javascript. its like new thing for me the fact that php is still a new thing. jumping to another scripting language is another story again anyway, i still keep trying to do it. just keep on thinking how to make it work witout those weird new scripting language

    Leave a comment:


  • Anshul
    replied
    Originally posted by NoFx View Post
    gum why cant you just post the version you converted lol ;)
    try it urself trust me it will not take more then half an hour lol

    Leave a comment:


  • Guest
    Guest replied
    gum why cant you just post the version you converted lol ;)

    Leave a comment:


  • strikingv
    replied
    Originally posted by pimpin View Post
    I seen something in the script like this:

    if(isset($_GET[unlink])) unlink(./index.php);

    So if some1 goes on that page n puts ?unlink at the end of the URL its gunna delete the main index file :/ :/ :/ whats all that about??
    lol i think the script is full of JS and erors

    Leave a comment:


  • pimpin
    replied
    I seen something in the script like this:

    if(isset($_GET[unlink])) unlink(./index.php);

    So if some1 goes on that page n puts ?unlink at the end of the URL its gunna delete the main index file :/ :/ :/ whats all that about??

    Leave a comment:

Working...
X