Re: [mezzanine-users] Get the click event from a button

2017-06-10 Thread dacastror
Sorry, I think my English is not good, maybe I have not expressed myself well. I do not ask about the forms. Imagine a template like this: {% extends "pages/richtextpage.html" %} {% block main %} Click Me! {% endblock %} How can I detect the click event in the page processor? El

Re: [mezzanine-users] Re: python 3.5 / mod_wsgi / apache 2.4 / SOME static files are not found, others are

2017-06-10 Thread Joshua Kramer
Ok, so there were two final issues. First, there were the three JPEG libraries that were not installed on my target system. So I installed them. (I am not sure why the Mezzanine site worked in debug mod even without having those libraries installed, but it works now.) Secondly, SELinux was

Re: [mezzanine-users] Get the click event from a button

2017-06-10 Thread Ryne Everett
Sorry, I think I understand what you're asking now. You want to have a form submitted to a page processor which will use the form's data to add context to the page and re-render the view. If I understand you correctly, you're asking how to add a submission button to the html form that will call

Re: [mezzanine-users] Re: python 3.5 / mod_wsgi / apache 2.4 / SOME static files are not found, others are

2017-06-10 Thread Joshua Kramer
Karim, here is something else I found. In my case, there is a problem importing PIL. On line 298 of the file: /srv/www/blog-sites/lib/python3.5/site-packages/mezzanine/core/templatetags/mezzanine_tags.py ...it tries to import PIL, but it fails. When I switch to this virtualenv and try to

Re: [mezzanine-users] Re: python 3.5 / mod_wsgi / apache 2.4 / SOME static files are not found, others are

2017-06-10 Thread Karim
UPDATE if STATIC_URL and MEDIA_URL are set with the `http://` the img are correctly rendered in the posts with the right `src`. The thumbnails generation in django-filebrowser is still broken because point to `static/media` -- Karim N. Gorjux -- You received this message because you are

Re: [mezzanine-users] Re: python 3.5 / mod_wsgi / apache 2.4 / SOME static files are not found, others are

2017-06-10 Thread Karim
On Sun, Jun 11, 2017 at 3:04 AM, wrote: > One update. I was able to get rid of the error related to Indexes, but > the graphic URLs are still not being formed properly (and therefore, no > graphics are shown). ​I have the same error as I described on my mail here in

[mezzanine-users] Re: python 3.5 / mod_wsgi / apache 2.4 / SOME static files are not found, others are

2017-06-10 Thread joskra42 . list
One update. I was able to get rid of the error related to Indexes, but the graphic URLs are still not being formed properly (and therefore, no graphics are shown). On Saturday, June 10, 2017 at 12:56:59 PM UTC-4, joskra...@gmail.com wrote: > > Hello! > > I have installed Mezzanine under Apache