+ Reply to Thread
Results 1 to 10 of 10

Thread: Which Image Uploader you use

  1. #1
    nakaf's Avatar
    nakaf is offline Yes nakaf is WHB Lover!!!
    Join Date
    Aug 2006
    Posts
    59
    WHB Points this Month
    0.00
    WHB Points
    0.00
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Which Image Uploader you use

    Hye all

    How r u doing?

    I wanted to know which Image uploader you use in your
    website ??

    which script I mean
    [B]iN LoVe WiTh WHB[/B]:o

  2. #2
    Tom
    Tom is offline Member
    Join Date
    Jul 2006
    Location
    Schaumburg, Illinois USA
    Posts
    68
    WHB Points this Month
    0.00
    WHB Points
    0.00
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I use the IP.Gallery a plugin into IP.Board but this script works very good as I have used it in the past.

    http://gallery.menalto.com/

    Plus it is free!

  3. #3
    nakaf's Avatar
    nakaf is offline Yes nakaf is WHB Lover!!!
    Join Date
    Aug 2006
    Posts
    59
    WHB Points this Month
    0.00
    WHB Points
    0.00
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Tom,Thanks But I mean Image uploader script like imagehost or imageshack
    [B]iN LoVe WiTh WHB[/B]:o

  4. #4
    tiolalu Guest

    Default

    I think imageshack is the fastest, but also you have postimage.org .

  5. #5
    nakaf's Avatar
    nakaf is offline Yes nakaf is WHB Lover!!!
    Join Date
    Aug 2006
    Posts
    59
    WHB Points this Month
    0.00
    WHB Points
    0.00
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks Tiolalu but I still Mean

    IF someone knows best script for image hosting just tell us the script name
    [B]iN LoVe WiTh WHB[/B]:o

  6. #6
    Jef S.'s Avatar
    Jef S. is offline WHB Community Leader
    Join Date
    Apr 2007
    Location
    Orlando, FL, USA
    Posts
    514
    WHB Points this Month
    0.00
    WHB Points
    0.00
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Why make someone else money? I use my own upload script, just put this in your webspace, change the upload directory and URL in the echo lines. Name it process.php, or change the upload form to use whatever you name it

    <?php
    // In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
    // of $_FILES.

    $uploaddir = '/path/to/your/image/directory/';
    $uploadfile = $uploaddir . basename($_FILES['userfile']['name']);

    if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
    echo "file uploaded, it's available at http://yoursite.com/imagedir".$uploadfile."";
    } else {
    echo "file already uploaded, it's available at http://yoursite.com/imagedir".$uploadfile."";
    }

    ?>

    Then make a form to post to it like this:
    <form enctype="multipart/form-data" action="process.php" method="POST">
    <!-- MAX_FILE_SIZE must precede the file input field -->
    <input type="hidden" name="MAX_FILE_SIZE" value="550000" />
    <!-- Name of input element determines name in $_FILES array -->
    <input name="userfile" type="file" />
    <input type="submit" value="Send File" />
    </form>

  7. #7
    nakaf's Avatar
    nakaf is offline Yes nakaf is WHB Lover!!!
    Join Date
    Aug 2006
    Posts
    59
    WHB Points this Month
    0.00
    WHB Points
    0.00
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Jef ,

    Its very Simple one
    [B]iN LoVe WiTh WHB[/B]:o

  8. #8
    Jef S.'s Avatar
    Jef S. is offline WHB Community Leader
    Join Date
    Apr 2007
    Location
    Orlando, FL, USA
    Posts
    514
    WHB Points this Month
    0.00
    WHB Points
    0.00
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Yeah, it's not going to win any awards, but it works for what I use it for You could try some of the scripts mentioned here:
    http://www.hotscripts.com/PHP/Script...ing_direction=

    Some are free, some are commercial.

  9. #9
    tiolalu Guest

    Default

    Yes, I was there and I was trying most I found.

    The first one, UploadImage it's the best for me, but doesn'twork for me the index page, only admin page . I cannot change anything because the page is encrypt.

    The second one, easyimage, is the one I'm using, and it's very simple, with no addon features, just host the images you put .

  10. #10
    jhsands Guest

    Default

    Don't forget to check out the CPanel image manipulator... https://server:2083/frontend/x2/cpanelpro/images.html

    It has a thumbnailer, image resizer, and format converter.

    You can upload your files in the file manager...
    then just


    <img src="images/file.jpg">
    Last edited by jhsands; 05-01-2007 at 01:10 AM. Reason: code tag doesn't work

+ Reply to Thread

Posting Permissions

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