Uploading images in browsable API

2020-06-16 Thread Filip Bogdanovski
Hello everyone, I was wondering if someone know why my field for uploading pictures is like this? I can't select new pictures from my computer to upload, only ones already uploaded in the model instances through my Admin panel. It looks this way on my all of my routes. Here is link for my gith

Re: Uploading images from media folder during runtime.

2020-03-22 Thread Sandip Nath
MMK, That is the solution for static files, not the dynamic one. How to upload images dynamically during runtime, such as the user uploads his/her profile image. On Sunday, 22 March 2020 00:21:10 UTC+5:30, Sandip Nath wrote: > > I am developing a car rental app. I have esigned it such a way that

Re: Uploading images from media folder during runtime.

2020-03-22 Thread mmk mmk
you must use load static tag in your templates as follow: {% load static %} i hope this solve the problem for more info refer to django official docs https://docs.djangoproject.com/en/3.0/howto/static-files/ regards On Sun, Mar 22, 2020 at 7:19 AM Sandip Nath wrote: > Sir thank you for your

Re: Uploading images from media folder during runtime.

2020-03-21 Thread Sandip Nath
Sir thank you for your prompt reply. But it isn't clear to me. The images of drivers is getting stored in media/driver_photos and cars in media/car_photos, when uploaded from admin page. But car.html and driver.html both cannot display those images. Error occurring at the img src. I have writte

Re: Uploading images from media folder during runtime.

2020-03-21 Thread Juan J . Moreno Piña
Please follow these steps: Display Image in a Django Template (using ImageField) * Add this to your settings file: ... * Create a folder named “media” under your project root directory, meaning the folder will be on the same level as your apps. * Add these to your main urls.py. ... *

Uploading images from media folder during runtime.

2020-03-21 Thread Sandip Nath
I am developing a car rental app. I have esigned it such a way that the car and driver images will be uploaded from admin page during runtime from media folder. The models.py working fine. Images can be uploaded to the media folder. But the images are not getting diplayed on the car page. Shoul

Re: Error uploading images

2016-07-02 Thread Lee Hinde
django-storages to put user uploaded files on s3. >> >> Uploading images in the shell works fine. So, I assume I've got >> django-storages and boto installed fine and S3 configured correctly. >> >> Uploading in real-life, doesn't work. The error I get

Re: Error uploading images

2016-07-02 Thread Vijay Khemlani
The typical problem is forgetting to add the enctype='multipart/form-data' attribute to the form tag On Sat, Jul 2, 2016 at 9:40 PM, Lee Hinde wrote: > Using django-storages to put user uploaded files on s3. > > Uploading images in the shell works fine. So, I assum

Error uploading images

2016-07-02 Thread Lee Hinde
Using django-storages to put user uploaded files on s3. Uploading images in the shell works fine. So, I assume I've got django-storages and boto installed fine and S3 configured correctly. Uploading in real-life, doesn't work. The error I get back is that the image field is required.

uploading images

2014-08-09 Thread ngangsia akumbo
can some one refee to me a good guide that can properly explain a step by step guide on how to upload images in module and view them on the template. The django documentation does not explicitly explain that section well i am using django 1.4 -- You received this message because you are subsc

Django-Tastypie with mongoengine problem in uploading images to GridFS

2013-06-19 Thread Hélio Miranda
Hi! I have an application (Django-Tastypie-mongoengine) in which I am uploading images to GridFS. With the previous version of tastypie and mongoengine was working properly. As I was doing the following to upload: *def upload (request, id):* * Movie.objects movie = (id = id)* * * * if

Re: uploading images via API

2012-06-04 Thread Aljoša Mohorović
take a look at gist w/ base64 file upload solution: https://github.com/toastdriven/django-tastypie/issues/42 it works great, you can add Base64FileField implementation to your app (it's only ~15 lines of code) and you can upload from anything that can open a file and encode it. you can also use fl

uploading images via API

2012-05-29 Thread Bastian
Hi, I have a view where a user can upload an image via the web interface. Now I would like to play with uploading the images via an API from phones and such. I use Tastypie for other endpoints but it looks like it does not really support images yet. So I'm looking for advices as to the road to

Re: Odp: Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-04 Thread urukay
In form use this field: class MyImageField(ImageField): def __init__(self, *args, **kwargs): super(MyImageField, self).__init__(*args, **kwargs) def clean(self, *args, **kwargs): data = super(MyImageField, self).clean(*args, **kwargs) try: data.name =

Re: Odp: Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-04 Thread Ariel
And how can I change the filename of the image when it is uploaded ??? 2011/5/4 urukay > Or try to change the name of the file when uploading the image/file. > That's how solved it. Had couple problems with it also in development > enviroment and now it's working ok. Haven't tested yet in produc

Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-04 Thread Ariel
I am using debian 6 in spanish. On Wed, May 4, 2011 at 2:41 AM, Karen Tracey wrote: > On Tue, May 3, 2011 at 10:22 AM, Ariel wrote: > >> In my apache enviroment settings I have already set that: >> >> export LANG='en_US.UTF-8' >> export LC_ALL='en_US.UTF-8' >> >> But I still get the same error.

Re: Odp: Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-03 Thread urukay
Or try to change the name of the file when uploading the image/file. That's how solved it. Had couple problems with it also in development enviroment and now it's working ok. Haven't tested yet in production, but it should work too. Radovan On 3. Máj, 22:56 h., Tomasz Zieliński wrote: > W dniu w

Odp: Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-03 Thread Tomasz Zieliński
W dniu wtorek, 3 maja 2011, 21:34:28 UTC+2 użytkownik Ariel napisał: > > Yes, only on the production enviroment. > > > Try to create a file with UTF8 characters in its name, from your code. Then you'll know if those Apache settings are in effect. -- Tomasz Zielinski pyconsultant.eu -- You re

Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-03 Thread Ariel
Yes, only on the production enviroment. Regards 2011/5/3 А. Р. <4d876...@gmail.com> > 2011/5/3 Ariel <...@gmail.com>: > > In my apache enviroment settings I have already set that: > > > > export LANG='en_US.UTF-8' > > export LC_ALL='en_US.UTF-8' > > > > But I still get the same error. Bedsides I

Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-03 Thread А . Р .
2011/5/3 Ariel <...@gmail.com>: > In my apache enviroment settings I have already set that: > > export LANG='en_US.UTF-8' > export LC_ALL='en_US.UTF-8' > > But I still get the same error. Bedsides I am using wsgi no modpython. > > Please, could somebody help me ??? > Regards > Thanks in advance. >

Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-03 Thread Ariel
In my apache enviroment settings I have already set that: export LANG='en_US.UTF-8' export LC_ALL='en_US.UTF-8' But I still get the same error. Bedsides I am using wsgi no modpython. Please, could somebody help me ??? Regards Thanks in advance. Ariel On Tue, May 3, 2011 at 1:40 PM, Karen Trace

Re: Problem uploading images and videos with filenames containing not ascii characters

2011-05-03 Thread Karen Tracey
You need to set up the environment/locale for your server so that Python will allow non-ascii characters in filenames. See: http://docs.djangoproject.com/en/1.3/howto/deployment/modpython/#if-you-get-a-unicodeencodeerror Karen -- http://tracey.org/kmt/ -- You received this message because you a

Problem uploading images and videos with filenames containing not ascii characters

2011-05-02 Thread Ariel
Hi everybody: How Can I solve this, I have a form to upload videos and images but when a video or image with a filename containing not ascii characters is uploaded then I get the following error: Django Version: 1.2.1 Exception Type: UnicodeEncodeError Exception Value: 'ascii' codec can't encod

Re: Uploading Images

2009-06-24 Thread Daniel Roseman
On Jun 15, 4:54 am, Oleg Oltar wrote: > Hi! > > >   {{ form.as_p }} >   > > > After trying this code in browser I am getting a text field with > browse button, so when I chose file to upload, and finally click > upload I am getting 404 Error. > Not sure what I might doing wrong. > Please hel

Re: Uploading Images

2009-06-24 Thread Avinash
On Jun 24, 2:50 pm, Avinash wrote: > The second message posted by you shows that the POST request handler didnt > find key 'files' in its Multivalue Dictionary.Its I think the keyword > 'file' has been deprecated from later versions of Django.So for > uploading the file, just make an instance o

Re: Uploading Images

2009-06-24 Thread Avinash
The second message posted by shows that the POST request handler didnt find key 'files' in its Multivalue Dictionary.Its I think the keyword 'file' has been deprecated from later versions of Django.So for uploading the file, just make an instance of the form class like, form = ImageForm(request.PO

Re: Uploading Images

2009-06-23 Thread Roboto
{% if form.is_multipart %} {% else %} {% endif %} {{ form }} http://docs.djangoproject.com/en/dev/ref/forms/api/#binding-uploaded-files On Jun 15, 12:59 am, Oleg Oltar wrote: > I made a mistake in view.py. > Corrected version is > def handleUploadedFile(file): >     destination = ope

Re: Uploading Images

2009-06-14 Thread Oleg Oltar
I made a mistake in view.py. Corrected version is def handleUploadedFile(file): destination = open('usermedia/new.jpg', 'wb+') for chunk in file.chunks(): destination.write(chunk) destination.close() return destination def user_profile(request, profile_name): owner

Uploading Images

2009-06-14 Thread Oleg Oltar
Hi! I know that the problem probably was discussed many times already, but I really can't make it working. I read the documentation and prepared the following code: model: class UserProfile(models.Model): """ User profile model, cintains a Foreign Key, which links it to the user pr

Uploading images

2007-11-22 Thread [EMAIL PROTECTED]
Hi! I've a model like this: class Photo(models.Model): name = models.CharField(_("Nome"),max_length=50 ,blank=False) image = models.ImageField(_("Immagine"), upload_to= settings.MEDIA_ROOT+"/%Y/%m/") caption = models.CharField(_("Didascalia"), max_length=4000, blank=False) I'm develo