Questions tagged [django-filebrowser]

django-filebrowser is a pluggable django app that allows to manage files through the admin interface

django-filebrowser is a pluggable django app that allows to manage files through the admin interface.

84 questions
24
votes
3 answers

Django: manually create imagefield in model from existing file on server

This is killing me! I'm using django-filebrowser, and I want to create a gallery app that leverages it's upload capabilities to manage images. I have a Gallery model that allows the user to select or create a directory on the server, and upload…
Timmy O'Mahony
  • 53,000
  • 18
  • 155
  • 177
9
votes
1 answer

django-filebrowser 'Error finding Upload-Folder'

I have: Django 1.8.2 django-grappelli 2.7.3 django-filebrowser 3.6.4 django-tinymce 2.4.0 In INSTALLED_APPS: INSTALLED_APPS = ( 'grappelli', 'filebrowser', 'django.contrib.admin', In urlpatterns: from filebrowser.sites import…
jevgenij
  • 824
  • 1
  • 7
  • 16
5
votes
4 answers

Django-tinymce and django-filebrowser, image upload Error finding Upload-Folder (MEDIA_ROOT + DIRECTORY)

So I'm trying to get filebrowser working with tinymce in django. Evrything goes fine with tinymce, nice fancy text editor. When I try to open the file browser i get ImproperlyConfigured at /admin/filebrowser/browse/ Error finding Upload-Folder…
Christopher
  • 169
  • 2
  • 6
5
votes
1 answer

django-filebrowser not accessible and a 404 is thrown

Page not found (404) Request Method: GET Request URL: http://beta.mysite.com/admin/filebrowser/ The requested admin page does not exist. django-filebrowser requirements: django 1.0+ ( I have 1.1 ) PIL ( I installed python-imaging…
meder omuraliev
  • 183,342
  • 71
  • 393
  • 434
4
votes
2 answers

Django: What's an awesome plugin to maintain images in the admin?

I have an articles entry model and I have an excerpt and description field. If a user wants to post an image then I have a separate ImageField which has the default standard file browser. I've tried using django-filebrowser but I don't like the fact…
meder omuraliev
  • 183,342
  • 71
  • 393
  • 434
4
votes
2 answers

Django - Alternatives To File Browser that Work Well With S3

Django Filebrowser does not work well with storage services. Django Filer found on Django Packages seems like a good alternative but its support of storage backends seems incomplete. I would like to know what are other alternatives to Django's…
howtodothis
  • 1,265
  • 4
  • 17
  • 30
4
votes
2 answers

How to download a file uploaded using django-filebrowser?

I am trying to create a download of a file object. the file was added using django-filebrowser which means it is turn in to a string path to the the file. I have tried the following: f = Obj.objects.get(id=obj_id) myfile =…
Ernest Jumbe
  • 758
  • 9
  • 21
3
votes
1 answer

In django, how can I retrieve a value from db into a custom field template?

I am using a custom class on my model to provide image uploading, through an app called django-filebrowser. # myapp/models.py class Book(models.Model): name = models.CharField(max_length=30) image = FileBrowseField("Image", max_length=200,…
linqq
  • 3,067
  • 2
  • 19
  • 17
3
votes
2 answers

File browser not showing in Django-tinymce

I've been trying to get django-filebrowser working in django-tinymce (using MCE v4.0.x) for a while now, and still can't get the file browser callback to work. Here's what I've done so far: Installed TinyMCE via pip, added necessary settings…
benwad
  • 6,414
  • 10
  • 59
  • 93
3
votes
3 answers

Dynamic image upload/browsing path for django-tinymce

I would like to use tinyMCE as the editor for my django application, but have run into some trouble. I have everything setup, but it appears there is no way to specify the upload path for the image insert/upload function. I have two specific…
Psyferre
  • 135
  • 2
  • 9
3
votes
1 answer

Django-tinymce + django-filebrowser-no-grapelli doesn'work

I am confused a bit. I have tried different ways and manuals, but nothing works for me. What I use: django 1.5, django-page-cms, django-tinymce. I need filebrowser for tinymce for using in admin. I stopped at…
user1931780
  • 446
  • 1
  • 6
  • 17
3
votes
1 answer

bug with django-filebrowser and django-storages which library is at fault?

I use django-filebrowser and django-storages (w/ s3boto) to add file embed into my tinyMCE implementations for my django projects. Recently I noticed that there is a bug, django-fileborwser does not save thumbnailed versions of uploaded files…
Francis Yaconiello
  • 10,829
  • 2
  • 35
  • 54
2
votes
1 answer

Django-Filebrowser: Getting an AttributeError: 'NoneType' object has no attribute 'endswith'

I'm searching what is the reason for getting this AttributeError: 'NoneType' object has no attribute 'endswith'. I have Django 1.3 installed and trying to use the PIP install of Django-Filebrowser and when I try to syncdb or runserver I get this…
Tucker Jones
  • 81
  • 1
  • 4
2
votes
4 answers

Decoding error in django filebrowser 3.2 on linux

The error message: Traceback: File "/web/hvita_perlan/lib/python2.6/site-packages/django/core/handlers/base.py" in get_response 111. response = callback(request, *callback_args, **callback_kwargs) File…
demux
  • 4,544
  • 2
  • 32
  • 56
2
votes
1 answer

Django filebrowser missing JS file

I am trying to use django-filebrowser. I have installed in correctly according to the instructions, but i get a JS error every time i try to upload a file. I should note that i am able to browse to 'filebrowser/browse/', create directories etc. The…
Dim
  • 815
  • 2
  • 7
  • 12
1
2 3 4 5 6