Re: Skip upload of existing S3 Object

2017-11-27 Thread palansh agarwal
Hi Chris, Were you able to solve this? I am in a similar situation. On Sunday, January 1, 2012 at 4:55:07 PM UTC+5:30, Chris Hasenpflug wrote: > > I have a model with an ImageField and am using django-storages > S3BotoStorage backend. To reduce load on the server, I'm using > Amazon's S3 Browser

Re: Skip upload of existing S3 Object

2014-03-18 Thread Rise Riyo
Hi, Chris, Were you able to get this working? I'm in the same situation. I am able to directly upload my files to S3 using S3Upload.js (https://groups.google.com/forum/#!searchin/django-users/s3$20django-storages/django-users/5ltaK8NQ_lw/6hGtCE-oqH8J) and Will's code (https://github.com/flyi

Re: Skip upload of existing S3 Object

2012-01-05 Thread Chris Hasenpflug
The reason I'm POSTing after the direct upload to S3 I need to create the model with extra data. As far as I can tell S3's success_action_redirect doesn't allow you to pass additional information. Additionally, since this is an ImageField, I can't set the key directly. At the moment, I've resorted

Re: Skip upload of existing S3 Object

2012-01-01 Thread Ivo Brodien
Hi, the form sends the picture to S3 and then S3 calls you on an URL which you specify with “ success_action_redirect”. This should point to an URL on your server where you then store the key/hash which will be provided in the URL. Your code uses POST data but S3 will put the metadata in the UR