Sunday, March 1, 2015

Re: Django Wysiwyg and images (Summernote or Froala)

Hi Sakis,
I did manage to solve this using froala ( https://github.com/froala/django-froala-editor)with a two step process.
1) First I set up my environment with gunicorn as the application server and nginx serving up /static/* and /media/*

2) When an image is dragged into froala a http request is made to a django view which uploads the image and returns the path of the image in the form {link:'path/to/file.png''} by viewing the console (ctrl+shift+j in chrome)while dragging images into froala I saw that the wrong path was being returned (a leading / was missing) I edited froala's view.py to return the correct path. While I was there I also edited it to save file uploads to the correct location.

On 1 March 2015 at 00:47, Sakis Brouzioutis <sakisbl7@gmail.com> wrote:
Hi Dave,

I encounter the same problem. Did you find any solution?

I really don't know what is going wrong and the image does not appear.

Sakis

Τη Τετάρτη, 4 Φεβρουαρίου 2015 - 12:04:30 π.μ. UTC+2, ο χρήστης David Mutton έγραψε:
Hi,
I've been trying to integrate a WYSIWYG editor into my Django project. I first started with Summernote and I had no issue integrating the it into admin or a form. I followed the instructions on their github and everything works great except image uploading and inserting. The file is uploading (I can see it in the filesystem) but it does not show up in the editor or in the resulting html.

I thought it was just Summernote and so I switched to Froala but I'm getting the exact same behavior. Is there something I'm missing with image upload inside a wysiwyg?


Dave

--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/jKvMnVPnMjM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/a0eb7cff-6423-4f86-b4ac-fea9604e6604%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAAm-pDp0t4VtTez0NxqhjXvZjmkJoru0bnhWTF0JjL-vCwYFYw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment