Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
238 views

Git deleting things mysteriously (edit: actually django-storages)

The issue: sometimes, but not every time, Git deletes the static directory of a repo. We're not sure what triggers it, but it appears to happen when either merging between branches or sometimes even ...
6
votes
3answers
982 views

Storing images and thumbnails on s3 in django

I'm trying to get my images thumbnailed and stored on s3 using django-storages, boto, and sorl-thumbnail. I have it working, but it's very slow, even with small images. I don't mind it being slow when ...
3
votes
1answer
53 views

Pointing to multiple S3 buckets in s3boto

In settings.py I have: STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage' DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' AWS_ACCESS_KEY_ID = 'xxxxxxxxxxxxx' ...
2
votes
0answers
64 views

django-storages using boto - cannot upload mp3, but can upload an image. Also, suffering HTTP 307 pain

Am using the boto (2.2.1) backend for django-storages (1.1.4) to upload files to an S3 bucket. It works fine for images, but when I try to upload movie files (small mov, small avi) or an mp3, i get a ...
1
vote
1answer
173 views

Using Django-Storages with amazon S3 and https

We have an image uploader that uploads to AWS, using django-storages. Right now it sends images over http but we want it to use https. Googling didn't help me find a way to configure django-storages ...
1
vote
1answer
203 views

django: registering unzipped files on the local disk

[I apologize in advance for the length of this question.] I'm using Django 1.2.3-3+squeeze1 on Debian squeeze. I am writing an application which uploads zip files to disk in a temporary location, ...
1
vote
1answer
225 views

Getting “new-line character seen in unquoted field” when parsing csv document using django-storages

I am trying to parse csv files that have been uploaded to Amazon S3 using django-storages. I keep getting a "Error: new-line character seen in unquoted field - do you need to open the file in ...
0
votes
1answer
56 views

Django CSS Background Image using STATIC_URL

I just changed my storage backend to Amazon S3, and I realized that my background was not loading for my site. I looked and realized that in my CSS (SASS actually) I had specified the background URL ...
0
votes
0answers
66 views

Attribute Error when running collectstatic for Django app

I'm receiving the following error when I run collectstatic: AttributeError: 'cStringIO.StringO' object has no attribute 'name' Everything works fine until I try and gzip my files using storages ...
0
votes
1answer
115 views

Removing default file names in Django-Storages S3

I'm using django-storages with amazon S3, and uploading image files with: models.ImageField(upload_to="img=%Y-%m-%d", max_length=256, blank=True, null=True) When the files are uploaded to S3 ...
0
votes
2answers
174 views

Custom Django Storage

I have a web page where people can upload their own images and I want to store them in a salable storage. I was willing to use Amazon S3, but later I decided to use my own file servers with web ...