Delete method applied on after I filter the objects
filer_files = File.objects.filter(owner_id__in=user_ids)
filer_files.delete()
calls method from DB model
File…
I am using django-filer module using which I am uploading jpg/png images to the django project.
Django-filer is internally using easy-thumbnails which doesn't support webp format.
So they have provided a work around as…
While trying to upload a file using django cms filer I am getting the following error
`*Internal Server Error: /admin/filer/clipboard/operations/upload/1/
Traceback (most recent call last):
File…
I am using django-filer to handle uploading images in my Django app. I am currently trying to load data from MySQL to PostgreSQL database.
I have used the following commands to get data from MySQL and move it t PostgreSQL:
python manage.py dumpdata…
I'm having a problem viewing uploaded images in Django filer.
The images can be uploaded without any problems and will also be saved in the specified folder.
After that it will be shown as follows:
Screenshot filer page
When I then click on expand I…
I have images successfully uploaded using django filer. I know it is a success because the images are viewable through my browser directly on the S3 storage endpoint.
When I try and sync the uploaded files to a different desktop the images are 1kb…
I have a model here in Django in which an entity can have several uploaded files:
from django.db import models
from model_utils.models import TimeStampedModel
from .managers import ProviderManager
class Provider(TimeStampedModel):
full_name =…
To replace the original file with a converted to webp version I've done the follow in my models.py:
django==2.2.17
django-filer==2.0.2
Pillow==8.0.0
class Provaa(File):
data = models.DateTimeField(auto_now=True,)
class Meta:
…
I am trying to set up django-filer on my website. I cannot figure out how to get the URLS to be separate from the admin site on the website.
localhost:8000/admin/filer/folder/
Is where it wants to go now, which of course requires someone to have…
I am currently working on a Django website project in PythonAnywhere where users can upload files using Django Filer in the admin. I have successfully implemented it with the public Django filer settings. However, it seems I cannot upload files…
I need something simple to edit files on my server from the admin interface. I found this application https://github.com/synw/django-dirtyedit and followed all the stes to install it and it seemed fine at first sight
but when I try to add any file…
I use django-cms for a project and in the frontend (template) I want to select a random image from a folder.
The media is managed by django-filer. I know how to use the files when I assign them directly in my models, but I can't figure out if and…
I have this project where im using sorl-thumbnail to resize and crop my images on the template, in the same project i happen to use django CMS to manage my content, the problem is Django CMS needs 'easy-thumbnails for its filer app both apps use…
I have a fresh install of django cms and when I try to create a folder and add images to it using the filer app it just gives me the error:
AttributeError at /en/admin/filer/folder/1/list/
'str' object has no attribute '_meta'
it looks like the…
I have no idea where else to post this, I am using django-filer (https://django-filer.readthedocs.io/en/latest/) and running into limits when trying to upload files. The problem is the software fails silently and does not give any errors and acts…