Django-storage refers to django file storage mechanism
0
votes
1answer
16 views
Error when trying to compress static files when using django-storages and django-compressor together
I have setup an AWS S3 bucket in order to transfer my static files in a remote CDN using the application django-storages,
everything worked fine until I tried to compress my static files before ...
0
votes
0answers
7 views
Django Storages & S3: How to set env variables for security
I've successfully configured my Django settings.py to include django-storages and have uploaded my static files to S3 (in no small part due to: Proper way to handle static files and templates for ...
1
vote
1answer
39 views
How to make django-storage and django-pipeline work together
I want to use both django-pipeline and django-storage on heroku for a personal app. Using only django-pipeline works perfectly, using only django-storage works like a charm but I don't manage to get ...
0
votes
1answer
12 views
Unexpected behavior for s3boto
I'm working with amazon S3 storage and have unexpected behavior: storage.exists() returns False for directories. Am I doing everything right? As I understand django documentation, it should return ...
0
votes
1answer
31 views
How to change private S3 bucket setting to serve images as http (not https) with django-storages?
I am using boto with django-storages to upload images directly to S3 from my django form. Everything is ok, except image url is https. I think having https is overkill and not required for media ...
0
votes
0answers
28 views
Django runserver, and s3boto backend
Django's "manage.py runserver" has the wonderful ability to magically gather altered CSS, JS, and image files as it's running. This makes the save changes-reload cycle incredibly fast when doing ...
0
votes
1answer
44 views
Django's FileField (or ImageField) on Google App Engine
GAE doesn't allow read/write to file system, which is what Django's FileField (or ImageField) is using (via the FileSystemStorage class).
I was thinking implementing a custom Django storage, but the ...
0
votes
1answer
26 views
django storages with boto using pirvate ACL throws 404 on save
I am using django-storages with boto. Everything works fine if I let storages handle S3 file uploads in my model as public.
However when I set the ACL to private on save/update I get this error ...
0
votes
0answers
30 views
Could not load Boto's S3 bindings. (Installed Boto)
I'm trying to use s3 to store the users' upload files, I use django storages
pip install django-storages
Added it to my INSTALLED_APPS
INSTALLED_APPS = (
...
'storages',
)
...
0
votes
1answer
49 views
How to use django-photologue with Amazon S3? Solving NotImplementedError
I have problem with using Photologue app on heroku with S3 as a storage for media and static files, Django 1.5.
The problem is that whenever I try to add e.g. a photo size in django admin I get: ...
0
votes
0answers
65 views
trouble generating thumbnail from image when using boto/django-storages and amazon s3
I'm using the gist found here https://gist.github.com/valberg/2429288 to generate thumbnails upon save. It works locally but not in production where I get an AttributeError:
fp is at EOF. Use ...
0
votes
2answers
113 views
Amazon S3 for django in production
I am using django-s3-folder-storage for my static and media files storage. I followed all the instructions mentioned in the documentation, but still I am not able to serve my static files. I am able ...
0
votes
3answers
109 views
Storing Django FileField with leading slash
I have a database used by two different systems and as a result I actually need the FileField value to have a leading slash, like so:
/dirs/filename.ext
In Django, however, FileField values can't ...
1
vote
2answers
74 views
django-storage with s3-boto break browser cache
I have a django project which use dango-storage over s3-boto.
Problem is that every file that is located on S3 unable to cache because the url is changed from each call.
here are two calls generated ...
1
vote
2answers
160 views
Django storage s3 media url is https:// instead of http://
When serving media with django-storage s3, the media url that is being generated is something like this:
...
1
vote
0answers
95 views
Django - Alternatives To File Browser that Work Well With S3
Django Filebrowser does not work well with storage services.
Django Filer found on Django Packages seems like a good alternative but its support of storage backends seems incomplete.
I would like ...
0
votes
1answer
42 views
Using S3 only in production Django
I have my base_settings.py set to DEBUG = False, at the end of my settings I have the following code:
if not DEBUG:
AWS_STORAGE_BUCKET_NAME = 'bucket_name'
STATICFILES_STORAGE = ...
0
votes
1answer
66 views
What's the catch-all Exception class regarging file storage handling in Django?
I need to catch all exceptions related to the Django's File Storage API, could it be for reading or writting, etc. The issue here is there's no generic exception class defined in that API. For ...
0
votes
1answer
63 views
How to save JPG/PNG files and have it retain correct Content-Type
I am saving a picture file from a server a bucket in S3 in the following way:
request = urllib2.Request('http://link.to/file.jpg')
response = urllib2.urlopen(request)
jpg_data = response.read()
...
0
votes
1answer
117 views
dajaxice collectstatic creating a temp file
I'm having a problem with Dajaxice and how it appears to create a custom javascript file to be used for ajax. When one runs manage.py collectstatic with Dajaxice installed, it creates a custom ...
0
votes
1answer
41 views
django softlayer object storage, what backend or package should i use?
I'm using django and I want to use SoftLayer object storage to store my mp3 files. http://www.softlayer.com/cloudlayer/storage
I can't figure out what backend in django-storages ...
0
votes
1answer
57 views
Django-Storages not being installed properly
I'm working on deploying my first django app to an EC2 server. I'm serving my static files from an S3 server, so I'm using the django-storages app.
I installed it using sudo pip install ...
0
votes
1answer
72 views
django-storages, how to override back to django's local file storage
I have setup django with django-storages and set the default file storage to s3boto
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
however I want to store one type of model ...
3
votes
3answers
331 views
Django collectstatic from Heroku pushes to S3 everytime
I'm using django-storages for static files with S3 (and S3BotoStorage). When I do collectstatic from my local machine, the behaviour is as expected, where only modified files are pushed to S3. This ...
0
votes
0answers
28 views
Using django-storages and the s3boto backend, How do I switch http and https based on requested protocol?
Basically the url's constructed by s3boto is either http or https based on the *AWS_S3_SECURE_URLS* setting. But I would like to switch the response based on whether the protocol is http or https. Is ...
0
votes
0answers
71 views
django storages and S3: different buckets for static files and media files
When using Django Storages with S3 to store both static file and media files, what is a good way to use different buckets for static files and media files?
In the common case,
...
3
votes
1answer
441 views
Django Storages - Could Not Load Amazon's S3 Bindings Errors
Hey so trying to connect my user uploaded images to my S3 bucket so the images will store there. Using django storages (did some research, seemed to be what everyone suggested, but open to ideas)
...
2
votes
1answer
253 views
Serving Django's static and media files from S3
I'm having a weird problem and I have no idea what's causing it. Here's my current config (using Heroku):
MEDIA_URL = '/media/'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(PROJECT_DIR, ...
1
vote
1answer
1k views
Access Denied error with Amazon S3
I'm getting an Access Denied error with Amazon S3 and can't figure out why.
My settings are as follows:
STATIC_URL = 'http://s3.amazonaws.com/%s/' % AWS_STORAGE_BUCKET_NAME
What would cause an ...
3
votes
0answers
150 views
What permissions does django-storages require for an s3 IAM user?
As the question asks, what are the minimum required permissions for a locked down s3 IAM user to use django-storages successfully? At the present time I've used something like
{
"Statement": [
...
0
votes
1answer
228 views
Django media uploads to AS3
I'm trying to upload all the Django media files (uploaded from the admin panel) to Amazon S3. So settings file look something like this :
INSTALLED_APPS = (
'django.contrib.auth',
...
1
vote
1answer
282 views
S3 not serving media files to Django heroku app
Good night fellas, I'm trying to setup a app with django on Heroku using S3 as a server for my javascript and my stylesheet. Following some posts, I configured a bucket on S3 and configured my env ...
1
vote
4answers
553 views
django-storages + sorl_thumbnail + S3 not working well together (URLs mismatch)
I am using django-storages and sorl_thumbnail together and I am using Amazon S3 for static and media files. I am using one bucket with 2 folders, 1 for static and 1 for media.
Here is my config:
...
5
votes
3answers
270 views
django-storages and amazon s3 - suspiciousoperation
I'm using django-storages with Amazon S3. I see the following error somewhat intermittently:
name = self._normalize_name(self._clean_name(name))\n\n File ...
1
vote
1answer
428 views
bug with django-filebrowser and django-storages which library is at fault?
I use django-filebrowser and django-storages (w/ s3boto) to add file embed into my tinyMCE implementations for my django projects.
Recently I noticed that there is a bug, django-fileborwser does not ...
1
vote
1answer
186 views
Linking to An Uploaded File in Django with Amazon S3
I am using django-storages backend and I have previously not used Amazon S3. I have migrated to Amazon S3 by uploading the files via Firefox's S3 Manager.
THe problem is, with this code:
<a ...
0
votes
1answer
198 views
Getting the contents of django-storages file for processing
When I was locally serving media and I needed to process a task getting the file contents was very straight-forward. However I just shifted over to django-storages and it's not a drop in replacement. ...
0
votes
1answer
193 views
Saving binary data into file on model via django storages boto s3
I'm pulling back a pdf from the echosign API, which gives me the bytes of a file.
I'm trying to take those bytes and save them into a boto s3 backed FileField. I'm not having much luck.
This was the ...
1
vote
2answers
507 views
Inconsistent SignatureDoesNotMatch Amazon S3 with django-pipeline, s3boto and storages
I have 2 files compiled by django-pipeline along with s3boto: master.css and master.js. They are set to "Public" in my buckets. However, when I access them, sometimes master.css is served, sometimes ...
1
vote
1answer
409 views
django-pipeline amazon s3 collectstatic file could not be found
I am using s3boto, django-pipeline and django-storages with this setting:
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
STATICFILES_STORAGE = 'utils.classutils.S3PipelineStorage'
...
0
votes
0answers
332 views
django-storages s3boto backend uploaded file links are broken
I am using django-storages' s3boto backend as my default storage backend.
If I upload to my publicly accessible bucket via AWS console, I have no problem accessing it. If I use my Django form to ...
0
votes
1answer
191 views
django pages cms file upload issue with django-storages for s3
Hi All and thank you for taking the time to look at my question.
I'm using django-pages-cms with s3_folder_storage http://pypi.python.org/pypi/django-s3-folder-storage, an extension of ...
0
votes
1answer
192 views
Scaling Django storage on webfaction
I launched a website a month ago that allows users to upload pictures. The site is taking off and I could be out of my 200 GB of space on webfaction in 2 or 3 months.
What is the best solution to ...
1
vote
1answer
282 views
What's the difference between Amazon's official S3.py vs boto.s3
I intend to use Amazon S3 in my Django project, what's the difference between Amazon's official S3.py and boto.s3? Which one should I use?
1
vote
0answers
84 views
FileConveyor - cumulus - Files not showing up on CloudFiles
I've installed FileConveyor and django cumulus (which is the replacement for mosso). I created a test directory at /home/drupal/conveyortest which I use as the scanPath.
When I start the FileConveyor ...
2
votes
1answer
758 views
Django Compressor with S3 URL Heroku
I am currently using django compressor and django storages to run my static media off of s3. My files are as follows:
My storage as per the docs is:
from django.core.files.storage import ...
7
votes
3answers
2k views
boto.exception.S3ResponseError: S3ResponseError: 403 Forbidden
I'm trying to get django to upload static files to S3, but istead I'm getting a 403 forbidden error, and I'm not sure why.
Full Stacktrace:
Traceback (most recent call last):
File "manage.py", ...
0
votes
0answers
277 views
Django S3 via Storages and how to manage file hierarchy
I'm trying to implement amazon S3 to my Django project, for this I use django-storages as below.:
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
STATICFILES_STORAGE = ...
0
votes
1answer
101 views
Calling the S3BotoStorage Save() method from a subclass
I am trying to implement a new Storage class that subclasses the S3BotoStorage from Django-Storages. (http://code.larlet.fr/django-storages/src/83fa2f0ba20c/storages/backends/s3boto.py)
Whenever the ...
0
votes
0answers
99 views
Passing a parameter to a FileField Storage's Save Method
So here is my situation. I have a model that I am saving, and it contains the following file:
file = models.FileField(storage=s3store, upload_to=custom_upload_to)
S3Store is a custom storage ...

