Selling PHP Bug Fixes Needed - $100

Discussion in 'Programming' started by element01, Apr 9, 2011.

Information

Instant Pay:
No

Does not qualify for feedback.

Info here is claimed by the seller and is not a replacement for your own due diligence.

Embed

HTML:
BBCode:
Link image:
  1. #1
    My last coder has stopped contacting me, so I need some help and fast!

    $100 for the fixes!


    My mp3 search engine script has some bugs which need to be fixed:

    - Duplicate latest search results

    - Flash player not working in IE

    - More mp3 sources needed

    You can demo the script here:

    http://www.mp3venture.com/

    Let me know if you have the skills to fix these bugs.
     
    element01, Apr 9, 2011 IP
  2. ajaxboys

    ajaxboys Greenhorn

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    I am ready to fix all of your site bugs. Please let me know the bug details.

    Thanks.
     
    ajaxboys, Apr 9, 2011 IP
  3. cerahil

    cerahil Well-Known Member

    Messages:
    72
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    113
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    hi please send me more detail so i will give you perfect time and budget


    Thanks,
    cerahil
     
    cerahil, Apr 9, 2011 IP
  4. cPAce

    cPAce Peon

    Messages:
    445
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    I am OPEN to take this job if its still open!
     
    cPAce, Apr 9, 2011 IP
  5. flexluther

    flexluther Well-Known Member

    Messages:
    252
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    123
    Digital Goods:
    1
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    This seems to be a cure for duplicate entries showing in the latest search (latestsearch.php) :

    <?php
    $text = file_get_contents("include/search.txt",NULL);
    $text=strtolower($text);
    $text=explode('[keywords]:',$text);
    foreach ($text as &$value){$value=rtrim($value);}
    $out=array_count_values($text);
    arsort($out);
    $out=array_slice($out,0,40);
    $crotz="";
    $out=array_keys($out);
    foreach ($out as $value) {
    $crotz .= '<a class="latest" href="';
    $crotz .= "http://".$domain."/mp3-".urlencode($value).".html";
    $crotz .= "\">".htmlspecialchars($value)."</a>";
    $crotz .= " <b>&rsaquo;&rsaquo;</b> ";
    }
    $crotz=str_replace(array('%0A','%3F',"\n"),'',$crotz);
    $crotz=substr($crotz,0,-2);
    echo"$crotz";
    ?>


    Hope it helps :)
     
    flexluther, Apr 11, 2011 IP
  6. Scripturi

    Scripturi Well-Known Member

    Messages:
    122
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    138
    As Seller:
    100% - 2
    As Buyer:
    100% - 0
    #6
    This snippet show the 40 most popular searches!
     
    Scripturi, Apr 25, 2011 IP