Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Recommend a free multiple-file image uploader alternative to Aurigma Image Upload?

  • 22-04-2014 12:44pm
    #1
    Registered Users, Registered Users 2 Posts: 13,870 ✭✭✭✭


    My copy of Aurigma Image Uploader is no longer functioning on my site thanks to the latest Java update, so they're asking me to cough up another $270 to upgrade to the latest version that has a fix (which is ridiculous considering I spent $160 on the earlier version nary 2 years ago!).

    So I'm on the lookout for an open source alternative.

    The site is ASP.NET but a Java-based uploader will work fine.

    Main criteria I'd like is:

    - Must compress/resize images PRIOR to upload
    - Great if it works on tablets (although not absolute requirement)


Comments

  • Registered Users, Registered Users 2 Posts: 2,791 ✭✭✭John_Mc


    I've used BlueImp jQuery File Upload with success. I know it resizes images for thumbnail previews. You would usually have the backend do the image resizing before storing to disk/database.


  • Registered Users, Registered Users 2 Posts: 13,870 ✭✭✭✭mrcheez


    One of the benefits of the Java-based uploader is that it resizes the images prior to upload which is advantageous for those on slow connections (seeing as my site is a travel blog site, most of my users are on crippling connections in the back o' beyond).

    Thanks for the suggestion though.


  • Registered Users, Registered Users 2 Posts: 13,870 ✭✭✭✭mrcheez


    hmm interesting... HTML5 and Canvas can apparently do this as well

    https://github.com/gokercebeci/canvasResize


  • Registered Users, Registered Users 2 Posts: 2,791 ✭✭✭John_Mc


    mrcheez wrote: »
    One of the benefits of the Java-based uploader is that it resizes the images prior to upload which is advantageous for those on slow connections (seeing as my site is a travel blog site, most of my users are on crippling connections in the back o' beyond).

    Thanks for the suggestion though.

    The fact that it does it already for thumbnail preview images means that it can probably be done for the file to be uploaded. It uses HTML 5 and canvas, and falls back on other techniques if the browser doesn't support them.

    I'd steer clear of Java based solutions by the way - it's just another requirement for users to be able to use your website.


  • Registered Users, Registered Users 2 Posts: 13,870 ✭✭✭✭mrcheez


    cool I'll check it out


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 2,791 ✭✭✭John_Mc


    You can do the resize before upload. Check it out


Advertisement