Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15
  1. #11
    Join Date
    Dec 2007
    Posts
    1,683
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by MrCraig View Post
    :S

    So any more suggestions lol?
    Rewrite the Mp3 directories,
    too something like lyrics.php?e=engine

    So they get confused about stealing the mp3 ;]

  2. #12
    Join Date
    May 2006
    Posts
    1,797
    Tokens
    0

    Latest Awards:

    Default

    LOOOL.

    Dont fink that wud work for some reason +REP anyways.
    EDIT: Gotta spred :{
    Last edited by MrCraig; 28-05-2008 at 09:08 PM.
    Coming and going...
    Highers are getting the better of me

  3. #13
    Join Date
    Dec 2007
    Posts
    1,683
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by MrCraig View Post
    LOOOL.

    Dont fink that wud work for some reason +REP anyways.
    EDIT: Gotta spred :{
    But try confuse the visitor to the URL - since you can't block them, not even myspace can block the MP3's from being downloaded, and their player look's pretty well coded.

  4. #14
    Join Date
    Nov 2006
    Location
    D?sseldorf
    Posts
    2,858
    Tokens
    2,256

    Latest Awards:

    Default

    you could use php...

    PHP Code:
    <?php

    // get-file.php
    // call with: http://domain/path/get-file.php?id=1

    $id = (isset($_GET["id"])) ? strval($_GET["id"]) : "1";

    // lookup
    $url[1] = 'http://domain/path/music_01.mp3';
    $url[2] = 'http://domain/path/music_02.mp3';
    $url[3] = 'http://domain/path/music_03.mp3';
    $url[4] = 'http://domain/path/music_04.mp3';

    header("Location: $url[$id]");
    exit;

    ?>
    so set the URL's

    then use

    http://domain/path/get-file.php?id=1

    And it would go to

    http://domain/path/music_01.mp3

    -Luke

  5. #15
    Join Date
    May 2006
    Posts
    1,797
    Tokens
    0

    Latest Awards:

    Default

    Ye but then a user could easily type the get-file.php?id=1 and still access the music so theres no real point lol
    Coming and going...
    Highers are getting the better of me

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •