Tagged Questions
11
votes
6answers
1k views
Validating Uploaded Files in Django
A Django app that I am working has an Event model. An Event may have associated photos, static html files and pdf files.
I would like to allow trusted users to upload these files, but I am wary about ...
8
votes
3answers
5k views
How to upload a file with django (python) and s3?
I'm looking for a way to upload a file to s3. I am using django. I am currently using amazon's python library for uploading along with the following code:
View:
def submitpicture(request):
...
6
votes
4answers
11k views
“CSRF verification failed” when attempting to upload a file or create a folder with filebrowser for Django
I have installed filebrowser for Django (not filebrowser3) and when I try to upload a file I recieve the following error:
403 Forbidden
CSRF verification failed. Request
aborted.
More ...
3
votes
2answers
1k views
How to copy InMemoryUploadedFile object to disk
I am trying to catch a file sent with form and perform some operations on it before it will be saved. So I need to create a copy of this file in temp directory, but I don't know how to reach it. ...
2
votes
1answer
96 views
Building a multipart/form-data with binary image data in Django gives me a UnicodeDecodeError
--- Edited below with some more testing, please read :) ---
I'm struggling trying to build a multipart/form-data body in Python, basically I'm doing it with a buffer of strings in a list and then ...
2
votes
1answer
279 views
Django: how to serve user-submitted images & thumbnails from separate, multiple servers?
For my Django site, I'd like to:
Accept images submitted by users
Generate thumbnails from those images
Put both the original images and the thumbnails onto separate, multiple servers that are ...
1
vote
2answers
38 views
How to get the filesize and SHA-1 digest of an uploaded file?
I've got this model in my Django app:
class Image(models.Model):
image_file = models.ImageField(
upload_to='images/',
width_field='width',
height_field='height'
)
...
1
vote
0answers
41 views
Django: file upload MemoryError at /some/url
I've MemoryError exception when I try to upload files more than 2 gigs in size after the deployment on the server but with development server it works fine.
Application served by Nginx + gunicorn, ...
1
vote
1answer
43 views
'ClientEditForm' object has no attribute 'cleaned_data' and how to get image from database
my project is including upload of images, I have a problem in editing client's info, when i click the edit button, it cannot get the image from the database and when i pud/change/upload another image ...
1
vote
2answers
123 views
Django / Python : Change uploaded filename before saving file
I am creating a site where users can upload images. I need to make sure that each filename has a unique name to prevent the files from overwriting each other. I will generate the unique name. But how ...
1
vote
1answer
224 views
Writing a file upload API using Django
I have a Django app that revolves around users uploading files, and I'm attempting to make an API. Basically, the idea is that a POST request can be sent (using curl for example) with the file to my ...
1
vote
2answers
56 views
Robust way to put contents of any arbitrary text file in the database (using Django/Python)?
As part of my Django app, I have to get the contents of a text file which a user uploads (which could be any charset) and save it to my DB. I keep running into issues (like having to remove UTF8's BOM ...
1
vote
2answers
410 views
Django : customizing FileField value while editing a model
I've got a model, with FileField. When I edit this model in a view, I want to change the "current" value of FileField which gets displayed in the view form. Let me explain.
models.py
class ...
1
vote
4answers
289 views
file upload with django
I am newbie working with django, I am trying to create a form that permits the user to upload a file. The code I used is pretty much the same as from the djangoproject tutorial but it didn't work. my ...
1
vote
2answers
124 views
Problems in uploading files with django
I'm new using django. I've to upload a file and fot this I'm following the instructions present in official documentation:
http://docs.djangoproject.com/en/dev/topics/http/file-uploads/?from=olddocs
...
1
vote
1answer
690 views
How to upload a file and show progress bar in Django?
I have written code to upload a file in Django as follows:
def upload(request):
if request.method == 'POST':
form = UploadFileForm(request.POST, request.FILES)
if form.is_valid():
...
1
vote
1answer
299 views
Django: how to use upload_to property of an ImageField
I'm writing a large application with image uploads.
Here is my model:
class GallryImage(models.Model):
# ...
image = models.ImageField(max_length=255, upload_to='gallery', ...
1
vote
3answers
646 views
Django Custom image upload field with dynamic path
I'm trying to create my own field type for uploading images, it won't be used in the django admin panel. I imagine the syntax would probably look something like:
photo = ...
1
vote
1answer
76 views
file_downloads..want to download an uploaded file
hi to all
My project is to upload an excel file and display its content in a template.
i have uploaded to an excel file in django successfully by using models.FileField .now what i want is to download ...
1
vote
1answer
197 views
django : unique name for object within foreign-key set
I'm trying to upload files for an article model. Since an object can have multiple images, I'm using a foreign-key from file model to my article model. However, I want all the files to have unique ...
1
vote
2answers
167 views
Send files from form directly to remote server
In my application I'm dealing with upload of really big image files. They will be stored on a remote server, so from what I was able to learn I need to write some custom Storage system (probably with ...
1
vote
1answer
533 views
Post Binary Sting to Django app using HTML 5
I read in a file via HTML5 FileReader and jQuery like so:
holder.ondrop = function(e) {
this.className = '';
e.preventDefault();
var file = e.dataTransfer.files[0],
reader = new ...
1
vote
1answer
468 views
Uploading multiple files in Django without using django.forms
So I've created a form that includes the following item
<input type="file" name="form_file" multiple/>
This tells the browser to allow the user to select multiple files while browsing. The ...
1
vote
2answers
420 views
Web based large files upload with resume facility in django or asp.net
We are looking for an approach for developing a web based application which should have facility to upload large files (size upto 10 GB) with resume facility.
We want to develop this application ...
1
vote
1answer
120 views
How would I go about downloading a file from a submitted link then reuploading to my server for streaming?
I'm working on a project where a user can submit a link to a sound file hosted on another site through a form. I'd like to download that file to my server and make it available for streaming. I might ...
1
vote
1answer
328 views
OSError on uploading files in Django
While trying to send form with image field in it I'm getting :
Exception Type: OSError at /user/register/
Exception Value: (13, 'Permission denied')
Of course first thing I've checked were the ...
1
vote
1answer
811 views
Django 1.1.1 chokes on multipart/form-data
Initial story
I'm trying to implement file upload using a simple form (I'm pasting stripped version, but all important parts are included):
<form method="POST" action="" ...
1
vote
3answers
772 views
Uploading files to App Engine using webapp and Django forms
My basic question is this: Is there an equivalent of
form = MyForm(request.POST, request.FILES)
when handling file uploads using the webapp framework on Google App Engine?
I know that I can pull ...
1
vote
2answers
2k views
Django file upload input validation and security
I'm creating a very simple django upload application but I want to make it as secure as possible. This is app is going to be completely one way, IE. anybody who uploads a file will never have to ...
0
votes
2answers
68 views
How to get content of Django ImageField before it is saved?
I'm trying to resize an image while saving an instance of my model.
class Picture(models.Model):
image_file = models.ImageField(upload_to="pictures")
thumb_file = ...
0
votes
2answers
58 views
How to upload a file to a custom file path
I am trying to set up a system in which user uploaded files will be given a path based on username and filename. The answer to this question seems to have pointed me in the right direction, but I'm ...
0
votes
1answer
23 views
How to use FileUploadHandler.upload_complete(self) callback for post-upload processing?
I'm new to python and I need to get the MD5 of a file that is uploaded through the script I'm using. The original scripts were written by this guy at this blog ...
0
votes
1answer
96 views
Django upload file url problem
I've got this media root:MEDIA_ROOT = '/var/www/hosted/myapp/static/' and this media urlMEDIA_URL = '/static/res/' and I am trying to upload a file using a callable: def get_uploadto(instance, ...
0
votes
1answer
168 views
Looking for a more complete explanation of how to upload video to youtube [closed]
Possible Duplicate:
Problem accessing user uploaded video in temporary memory
So I've tried this question here and here but I might have been being too specific or misguided in my question.
...
0
votes
0answers
39 views
django - permission problem when uploading a file
I'm working on creating a form with which the user can upload an image and I get this error:
[Errno 13] Permission denied:
Can someone provide some guidance on what I would need to change (keeping ...
0
votes
3answers
274 views
403 Forbidden error on swfupload and django
I'm trying to use a script for multiple file uploads, like swfupload or uploadify on my django application but no matter what I try, I always get a 403 forbidden error for the upload URL. If I try to ...
0
votes
0answers
77 views
Uploaded file in django doesn't have RIFF id
I upload .wav file to django, and problem is that lib wave from python, can't open it 'cause it doesnt have RIFF id.
I made this test:
print request.FILES['file'].read(20)
f = ...
0
votes
2answers
420 views
Django: sorl-thumbnail and hosting image files on my own file server
I like very much sorl-thumbnail library and I want to store image files not in current application (django) server, but to (another) my own file server with webserver for serving static files.
Do I ...
0
votes
1answer
452 views
How to use valum's file uploader in conjunction with Amazon S3 storage?
I have a file upload form where the file gets uploaded to an S3 bucket at Amazon. I am using https://bitbucket.org/david/django-storages/wiki/Home for that purpose.
Basic file uploading works fine ...
0
votes
2answers
265 views
Whats the alternative to 'yield' function in Django
The 'yield' function streams the output to the browser i.e. it appends the value to the response.
My requirement is that instead of "appending", is there any built in function which overwrites the ...
0
votes
2answers
444 views
Ajax POST request failing in Django
I am making an Ajax POST Request and it does not get recognized in my view.
Code in views.py:
@csrf_exempt
def upload(request):
if request.method == 'POST':
form = ...
0
votes
1answer
264 views
Reading first line of an uploaded text file in python/django
I am trying to process text files in a django app. Before I try to import the data, I need to evaluate the first line to determine the file type.
i tried file[0], but of course that doesn't work. ...
0
votes
1answer
164 views
How do I treat django's TemporaryUploadedFile as a regular python file
How can I do this? I notice that when you upload a file in django you access it as a TemporaryUploadedFile.
http://docs.djangoproject.com/en/dev/topics/http/file-uploads/
There is a method here that ...
0
votes
1answer
184 views
move_uploaded_file function equivalent in django
I would like to upload some files from form to cloud server without redirecting there. So I've found this tutorial with php/ajax but a function that is not present in django is used there - ...
0
votes
1answer
379 views
500 Error when sending file from python to django
I've found a nice python module for sending data to remote servers via HTTP POST called poster. So I've wrote a simple view on my django app to receive and store data and then tried to send some file. ...
0
votes
3answers
324 views
How do you create a video file upload form with Django?
I want a user to be able to upload a video from their computer or record it right from their webcam, then fill out other information with a form. I'm writing this app with Django.
0
votes
1answer
84 views
There is a system alert of (13, 'Permission denied'), how to solve that?
def upload_file(request, step_id):
def handle_uploaded_file (file):
current_step = Step.objects.get(pk=step_id)
current_project = Project.objects.get(pk=current_step.project.pk)
...
-1
votes
1answer
78 views
Handling file submissions with html and python
I'm trying to create a form that will handle video file uploads from the user, but I'm running into a bunch of problems. I am trying to avoid building a model form for this because I won't be saving ...
-2
votes
1answer
52 views
file uploads - handling uploaded files function
I was looking at the django docs for file uploads in a form and I don't quite understand the arguments for the open function here. All I want to do is tell the handler the directory on my computer ...