What Image Hosting Script is Used

Discussion in 'Programming' started by djruban, Oct 31, 2013.

  1. #1
    I am new here. I am sorry is its not right to ask here.

    I want to know what script does these two sites use as they are identical in every way.

    http://someimage.com/

    imgbox.com

    I am looking forward to some help , much appretiated. Thanks
     
    djruban, Oct 31, 2013 IP
  2. jscg

    jscg Well-Known Member

    Messages:
    161
    Likes Received:
    5
    Best Answers:
    3
    Trophy Points:
    108
    Digital Goods:
    2
    #2
    The design is similiar but script could be any image sharing script used.
     
    jscg, Oct 31, 2013 IP
  3. djruban

    djruban Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #3
    which script so?
     
    djruban, Oct 31, 2013 IP
  4. Pudge1

    Pudge1 Well-Known Member

    Messages:
    912
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    140
    Digital Goods:
    1
    #4
    Image sharing scripts are extremely simple and are available for free all over online. It's possible the scripts are the same but it's also very possible somebody wrote a different script (or found a free one online for that matter) and used the same template as the other site.
     
    Pudge1, Nov 7, 2013 IP
  5. djruban

    djruban Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #5
    I know it's the same template but i just want to know the script name bcos it's the same anyway thanks for your reply !
     
    djruban, Nov 8, 2013 IP
  6. Pudge1

    Pudge1 Well-Known Member

    Messages:
    912
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    140
    Digital Goods:
    1
    #6
    For what purpose do you want to know the script name? Are you trying to open your own image hosting website? If so I highly discourage it because there are already so many out there it would be very difficult for yours to be popular. Additionally, you don't even know how to code an image hosting script so that even further sets you back from the rest of image hosting websites.
     
    Pudge1, Nov 8, 2013 IP
  7. djruban

    djruban Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #7
    It s for personal use and who said that i dont know how to code a script? I just dont want to waste my time to code something that i can find on the net for free or paid anyhow its will cost less than if i code by my self
     
    djruban, Nov 8, 2013 IP
  8. Pudge1

    Pudge1 Well-Known Member

    Messages:
    912
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    140
    Digital Goods:
    1
    #8
    If it's for personal use why are you set on acquiring the script for this one? Google free image hosting script online and I guarantee you will find 20 to sift through and pick from in a relatively quick amount of time. Not to mention I very much doubt you know how to code an image hosting script considering you posted this thread about 8 days ago and are still inquiring about which specific script these sites are using when an extremely basic image hosting script is about 20-30 lines of code at the most.
     
    Pudge1, Nov 8, 2013 IP
  9. djruban

    djruban Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #9
    I know how to search on google lol as i said i want this script not others otherwise ill not ask for help.
     
    djruban, Nov 8, 2013 IP
  10. Pudge1

    Pudge1 Well-Known Member

    Messages:
    912
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    140
    Digital Goods:
    1
    #10
    
    <html>
    <head>
    <title>Image Hosting Script</title>
    </head>
    <body>
    <form action="image.php" method="post" enctype="multipart/form-data">
    <label for="file">File:</label> <input type="file" name="image" id="file" /><br />
    <input type="hidden" name="submitted" value="true" />
    <input type="submit" value="Upload!" />
    </form>
    <?PHP
    if($_POST['submitted'] == "true")
    {
    move_uploaded_file($_FILES['image']['tmp_name'],'uploads/' . $_FILES['image']['name']);
    echo "File uploaded!";
    }
    else
    {
    }
    ?>
    </body>
    </html>
    
    Code (markup):
    There ya go!

    EDIT: Sorry I did not see your above post before posting this one
     
    Pudge1, Nov 8, 2013 IP
  11. djruban

    djruban Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #11
    Why don't you understand that i dont want other image upload script?
     
    djruban, Nov 8, 2013 IP
  12. Pudge1

    Pudge1 Well-Known Member

    Messages:
    912
    Likes Received:
    6
    Best Answers:
    1
    Trophy Points:
    140
    Digital Goods:
    1
    #12
    I didn't see your post above that one until after I had already posted mine, hence the fact that I edited it. Sorry, but as you can see here there is absolutely no way of determining what script those sites are using without diving into the code they are using which just isn't possible. Though using the above code with the design on their site (which you can rip off if you wanted to and it's only for personal use) there would be no distinguishable difference with a few tweaks to the code. The script they are using isn't necessarily associated with the design of the website.

    Other than that I don't know what to tell you or what anyone else could tell you to appease you since none of us can see the PHP source code. If you're sole interest in the code of this site is for personal use than I am unable to see why the above code cannot satisfy your needs. If your intent is to create a website of your own using the code used by these sites then 1) Learn PHP 2) Don't bother trying to get into an already tapped-out online market.
     
    Pudge1, Nov 8, 2013 IP
  13. djruban

    djruban Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #13
    Ok no prob anyway thanks and as i said before i know how to code so i know php ^^...
    But i allready see this script in action years ago thats why i posted here to find out the name.
     
    djruban, Nov 8, 2013 IP
  14. spork985

    spork985 Active Member

    Messages:
    35
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    93
    #14
    http://someimage.com is not using a "script" of any kind.
     
    spork985, Sep 13, 2014 IP