Drag & drop image upload
Register

We are the best invite forum on the internet! Here you will find free invites, free seedboxes, free bonuses, and much more. Our members know the true meaning of sharing and have created a truly global bittorent community! Our site has the most up to date information on all private trackers and our members will guide you and introduce you to this truly secretive and enlightened club. Ready to get started? Register now!


Results 1 to 8 of 8
  1. #1

    Join Date
    Aug 2011
    Posts
    116

    Default Drag & drop image upload

    Hi guys.

    I know this might be a small thing, but it would be easier to add images if you just could drag them into to the post!

    - Hyper



  2. To remove ads become VIP. Inquire about advertising here.
  3. #2

    Join Date
    Apr 2011
    Location
    I've left.
    Posts
    1,571

    Default Re: Drag & drop image upload

    Alot of things could be made easier or better but its the work involved, VBulletin is such an advanced forum that even the simplest things can require a lot of work and knowledge.

    IF we could drag and drop, where would you store the images? If we used VBulletins built in attatchment system then im pretty sure that has a limit per user and getting them to host on TI Image Dump would require some amount of work.
    Something I always remember is that basically anything CAN be done, its just that some require a lot more work!

    Do people really dislike our current image dump that much? I thought it was a really good host.

    I understand that it can be a hassle uploading then copy pasting the code if you have a few proofs but Its the best solution IMO.

    I can't really see this sugestion taking off to be honest, but ive been wrong before xD

    (Thanks for the sugestion though, good suggestions lead to the evolution of TI!! )

  4. #3

    Join Date
    Mar 2009
    Posts
    3,450

    Default Re: Drag & drop image upload

    Actually vbulletin does have an image drag & drop function. We just have to fine tune the settings for T-I. I'd like to see this implemented in the next couple of weeks. Thanks for reminding me!

  5. #4

    Join Date
    Aug 2011
    Posts
    116

    Default Re: Drag & drop image upload

    Sounds gr8 m8, I'm looking forward using that function!

  6. #5

    Join Date
    Aug 2011
    Posts
    8

    Default Re: Drag & drop image upload

    I was just working on a html 5 ajax (multiple) image uploader (wich could easilly be extended to support drag and drop, just add the event handler). Here is the (simplified) javascript code.

    <input type="file" id="input" multiple="" onchange="handleFileUpload(this.files)">

    <script>
    function handleFileUpload(filesToUpload){
    for (var i = 0, file; file = filesToUpload[i]; i++) {
    // Only process image files.
    if (!file.type.match('image.*')) {
    // not an image
    } else {
    var fd = new FormData();
    fd.append("fileField", file);
    var xhr = new XMLHttpRequest();
    // url to post to
    xhr.open("POST", "/dump.php");
    xhr.send(fd);
    }
    }
    }
    </script>

  7. #6

    Join Date
    Aug 2011
    Posts
    116

    Default Re: Drag & drop image upload

    All right, but I'm searching for an build-in function, where you can drag an image from your desktop or any other folder and drop it/them here in this syusem :D

  8. #7

    Join Date
    Aug 2011
    Posts
    116

    Default Re: Drag & drop image upload

    I guess I can close this tread?!

  9. #8

    Join Date
    Apr 2011
    Location
    I've left.
    Posts
    1,571

    Default Re: Drag & drop image upload

    Quote Originally Posted by Hyper View Post
    I guess I can close this tread?!
    I have moved it to approved suggestions since Vegas has approved this.

    It will then go to completed suggestions when its implemented.

    Thanks for the good suggestion!

Similar Threads

  1. Good sites for Upload Images
    By isonomy in forum Computers
    Replies: 56
    Last Post: December 24th, 2012, 01:27 AM
  2. Image uploading issue...
    By Baskey in forum Help
    Replies: 14
    Last Post: February 25th, 2011, 05:41 PM
  3. Replies: 2
    Last Post: February 21st, 2010, 12:55 PM
  4. Replies: 11
    Last Post: January 23rd, 2010, 12:42 PM
  5. Replies: 4
    Last Post: June 2nd, 2009, 12:53 AM

Tags for this 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
  •