Chad Taylor
Chad Taylor
Here's the code snippet that I used to change the filename and had success -- that was before I came across this useful gem. Notice the filename line -- I...
Here's my s3_upload.js snippet that shows where I was able to override the filename: ``` $(this).fileupload({ url: form.attr('action'), type: 'POST', autoUpload: true, dataType: 'xml', // This is really important as...
 The screenshot above is from my S3 Bucket where you can see that `Desert.jpg` and `aiming_6.png` files were renamed to `31808_2012_12_12_08_41_AM_Desert.jpg` and `31754_2012_10_25_03_40_PM_aimimg_6.png` successfully.
I was thinking of adding some kind of configurable options such as `prefix_filename = "2012_02_22_"` somewhere?