new

Stack Overflow for Teams

A private, secure home for your team's questions and answers.

Learn more
0
votes
1answer
21 views

Django jQuery File Upload stopped working on update

I have lost my file upload app. I followed the site below and had it working great. https://simpleisbetterthancomplex.com/tutorial/2016/11/22/django-multiple-file-upload-using-ajax.html I am not ...
1
vote
0answers
246 views

Django Ajax and net::ERR_CONNECTION_RESET with jquery-file-uploader

I'm trying to integrate jquery-file-uploaded (https://github.com/blueimp/jQuery-File-Upload) into django app. Assembly of JS code is done with brunch. Sample of the request in the browser So the ...
0
votes
0answers
89 views

jquery file upload to upload only the selected files from the datatable

I am trying to implement jquery upload plugin on my django app. What I have done is, I made the plugin to choose the files and list those files on the jquery datatable and I restricted the plugin to ...
0
votes
1answer
55 views

Cannot append extra data to jquery-fileupload call

I am trying to integrate file uploading functionality to my Django app using jQuery File Upload Plugin which can be found here. Now, I am already attaching csrf token with the input tag in the ...
0
votes
0answers
13 views

jfu upload file.error is always true in mozilla firefox?

views.py if upload_msg == "KeyError": file_dict['error'] = "Invalid File format" else: file_dict['error'] = False jfu_template.html `{{ JQ_OPEN }} if (file.error) { {{ JQ_CLOSE }} ...
0
votes
1answer
37 views

TemplateDoesNotExist (about jfu)

django-jfu is django jquery file uploader (https://github.com/Alem/django-jfu) jfutags.py: from django.core.context_processors import csrf from django.core.urlresolvers import reverse from django....
1
vote
0answers
92 views

Django jQuery File Upload files not being posted

I'm trying to implement jQuery File Upload with Django 1.10. I read through the wiki and other attempts but I want to use a different approach than the ones listed in the wiki so I cannot reuse their ...
2
votes
0answers
134 views

Processing file uploaded by jquery fileupload

I've followed the tutorial for jquery fileupload the code I've written is below $('#image_file').fileupload({ dataType: 'json', type: 'post', url: '/whats-on/upload-event/?v='+event_id, ...
0
votes
1answer
365 views

Upload file to S3 using Ajax and Boto3 for Django

I have a django project in which I would like to upload all images to S3. I have installed boto3 and am able to print out my buckets. Thus I know I have a definite connection. Now my next step is to ...
1
vote
0answers
54 views

Chunked Upload for Django's model field Implementation

The Technical Problem: realize such a model field that would upload file by chunks. Details: I know about https://github.com/blueimp/jQuery-File-Upload and I'm going to use it. As I undestand ...
1
vote
1answer
984 views

Jquery File Upload plugin in django

I am trying to use jQuery file upload plugin to upload files I am having a form containing text field and other inputs as well as the fileupload plugin specified file input as below <form method="...
0
votes
1answer
98 views

How can I use django-jfu with a ImageField and a FK?

I'm trying to use django-jfu to multiupload images, but I have a problem. I want to handle a foreign key dynamically (via url or something), but I can't think of anything. I have the following models:...
0
votes
3answers
627 views

Jquery File upload: How to set Multiple File Upload Widgets?

I'm using Jquery File Upload plugin with Django as a backend. Everything worked well until I tried to integrate the Multiple File Upload Widgets on the same page. First problem First, I'm not sure ...
1
vote
0answers
85 views

How to add multiple images with their captions using POST.getlist in django

I am working with multiple image uploader using blueimp jquery file upload in django. I am uploading multiple images with caption to database. But I am getting some difficulties. I want to save the ...
0
votes
1answer
191 views

Javascript templates in Django

My purpose is really simple. I want to re-produce the exact same demo from this page in my Django project, so I copied the index.html file to my project. At the end of the code, there are some ...
1
vote
0answers
466 views

Django-jfu Object [object Object] has no method 'fileupload'

I am using Django-jfu(https://pypi.python.org/pypi/django-jfu) to enable file uploading in my site. But I receive this error message in the console: Uncaught TypeError: Object [object Object] has no ...
2
votes
0answers
574 views

jQuery file uploader - Django not working correctly with chunks

I've spent some days by now trying to figure out how to tell Django that my jQuery file uploader is sending chunks and not x seperate files. I know that I need a custom FileUploadHandler like here in ...
0
votes
1answer
1k views

jQuery file uploader just sending one chunk

I'm using the jQuery file uploader in my Django application. I've got the problem that Django just receives one chunk of my big file. At first I thought that it might be an issue with my ...
0
votes
1answer
2k views

Django Drama: (Drag-n-Drop File Uploader in Multi-part Form) + (Bind File to Form / Model & Save to Postgres)

There are a few tiny related questions buried in here, but they really point to one big, hairy best practice question. This is kind of a tough feature to implement because it's supposed to do a ...