Coder Social home page Coder Social logo

uploadify's People

Contributors

jakegigabyte avatar ronniesan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

uploadify's Issues

the buttons don't match

the "SELECT FILES" button and the "Upload Files" button don't match not a big problem tho

file.xhr.responseText returns true{...,...,...

On successful single upload file.xhr.responseText returns

true{"error":"","imageid":564443,"name":"XGLQ0XJW.JPG","width":600,"height":450}

Where did the true comes from?

Kind Regards,

Edgar Brignoni

onQueueComplete

Hi,

I just migrated from uploadify to uploadifive to get rid of the flash usage, and everything works fine except from the event 'onQueueComplete' :-/

Of course I checked the code intended for the event; it works fine with other events like 'onUploadComplete'. There must be a bug... somewhere.

Regards

jquery.uploadifive.min.js:6 Uncaught TypeError: Cannot set property '$e' of undefined

I use jquery.uploadifive.js is fine, but got an error from jquery.uploadifive.min.js

jquery.uploadifive.min.js:6 Uncaught TypeError: Cannot set property '$e' of undefined

  • Pretty print
 d.Je.$e = function(e) {
        if (o[e]) {
            return o[e].apply(this, Array.prototype.slice.call(arguments, 1))
        } else if (typeof e === "object" || !e) {
            return o.init.apply(this, arguments)
        } else {
            d.error("The method " + e + " does not exist in $.uploadify")
        }
    }
}

Is this still maintained?

HI, just wondering if this project was still being maintained? I have a few new features/bugs I'd like to fix?

BUG - uploadLimit

If I set uploadLimit to 3 for example, then I select a file with not allowed type, and a normal file and upload those, it just uploads the normal one, then I select 3 other files and it just uploads those 3 as well while total is 4 then and not the limit 3

Bug: Files with extensions in uppercase get a "Forbidden File Type" error

Hi!

Assuming the script is used with the 'fileType' parameter set as '.jpg,.jpeg,.gif,.png' like in the Sample file, when sending an image named, let's say, IMG_4567.JPG, the javascript will reject the file, applying the status "Forbidden File Type" to it.

To correct this, this part of the javascript file:

// Create an array of file types
var file_types;
if (settings.fileType) {
	file_types = settings.fileType.split(',');
}

Could simply be changed to:

// Create an array of file types
var file_types;
if (settings.fileType) {
	file_types = settings.fileType.split(',');
	file_types = $.merge( $.merge( [], file_types ), file_types.map(item => item.toUpperCase() ));
}

This way, files can be treated whether their name is "IMG_4567.jpg" or "IMG_4567.JPG".

That probably got forgotten on the way, as the equivalent is done in the PHP file, so there's no need to modify anything in it for the bug to be fixed.

Page uploads Multiple Copies of Selected Files

I uploaded the SAMPLES folder and ran the index.php. It worked fine until I clicked UPLOAD FILES. It starts to upload files and I get messages stating "the files exists..." I know the files were not there to start with. It seems that the page is trying upload multiple copies of each selected file. If I click on OK in the warning the file is overwritten. If I click CANCEL the page quits. When I check the server there will be only 1xCopy of the file. Can anyone help me find out how to fix this? (I can provide web page if necessary)

Thanks

Uploadify Upload

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.