Re: [mezzanine-users] Re: Unable to deploy Mezzanine on Digital ocean.

2018-05-28 Thread Melvyn Sopacua
odeError: 'ascii' codec can't decode byte 0xff in position 0: Remove the Byte Order Marks from all your files. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emai

Re: [mezzanine-users] Content Preview and Content Publish

2018-04-06 Thread Melvyn Sopacua
On vrijdag 6 april 2018 08:05:35 CEST Chi-Cheong Weng wrote: > Any idea or recommendation on how to add the Content Preview and Content > Publish feature to Django Mezzanine CMS ? It's built in. Look around in the admin / read docs / do research. -- Melvyn Sopacua -- You re

Re: [mezzanine-users] urls.py problems when running on webserver through WSGI

2018-04-06 Thread Melvyn Sopacua
y_uwsgi[1]? -- Melvyn Sopacua [1] http://uwsgi-docs.readthedocs.io/en/latest/Apache.html#mod-proxy-uwsgi -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: [mezzanine-users] Re: Does Orderable / Sortable Work on Editable Template Tag?

2017-09-18 Thread Melvyn Sopacua
On second thought, that wouldn't work with cleaned_data, as has_changed() is a method of BoundField so it's a little more complex and you need to keep the form around: for k, v in [k, v for k,v in data_dict.items() if form[k].has_changed()] On Mon, Sep 18, 2017 at 9:14 AM, Melvyn Sopacua

Re: [mezzanine-users] Re: Does Orderable / Sortable Work on Editable Template Tag?

2017-09-18 Thread Melvyn Sopacua
ezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to mezzanine-users+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- Melvyn Sopacua -- You received this message because you are subscribe

Re: [mezzanine-users] How to create a form for blog posts that accepts image uploads

2017-09-17 Thread Melvyn Sopacua
t Filebrowser does not. > > -- > You received this message because you are subscribed to the Google Groups > "Mezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to mezzanine-users+unsubscr...@googlegroups.com. >

Re: [mezzanine-users] How to create a form for blog posts that accepts image uploads

2017-09-15 Thread Melvyn Sopacua
wer to this will steer me in the direction that I > need to research. > > Thanks again, > Ryan > > On Friday, September 15, 2017 at 11:38:01 AM UTC-4, Melvyn Sopacua wrote: >> >> If you're failry strong in python, but not Django and are working with >> Mezz

Re: [mezzanine-users] How to create a form for blog posts that accepts image uploads

2017-09-15 Thread Melvyn Sopacua
right direction, I think I can figure it > out. > > Thanks for the help! > Ryan > > -- > You received this message because you are subscribed to the Google Groups > "Mezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an &

Re: [mezzanine-users] 301s to /-terminated URLs even when a page is not found

2017-09-03 Thread Melvyn Sopacua
e changed? > > -- > You received this message because you are subscribed to the Google Groups > "Mezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to mezzanine-users+unsubscr...@googlegroups.com. > For more options,

Re: [mezzanine-users] Some examples, please

2017-09-01 Thread Melvyn Sopacua
e subscribed to the Google Groups > "Mezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to mezzanine-users+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- Melvyn Sopacu

Re: [mezzanine-users] captcha suggestions

2017-09-01 Thread Melvyn Sopacua
l to mezzanine-users+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiv

Re: [mezzanine-users] Safer admin login

2017-09-01 Thread Melvyn Sopacua
options, visit https://groups.google.com/d/optout. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+

Re: [mezzanine-users] wysiwyg

2017-06-21 Thread Melvyn Sopacua
or ordering problems or ... ? (frontend issue) What you're looking for in the source is: -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it

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

2017-06-12 Thread Melvyn Sopacua
On Monday 12 June 2017 20:47:33 Karim wrote: > ​If I try the mezzanine_tags:​ > > In [3]: from mezzanine.core.templatetags.mezzanine_tags import > thumbnail ...: img = '/home//myuser/webapps/kng_static/media/upload/test_image.jpg' Thumbnail takes a URL not a filesystem path.

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

2017-06-12 Thread Melvyn Sopacua
On Monday 12 June 2017 18:12:58 Karim wrote: > On Sun, Jun 11, 2017 at 10:43 PM, Melvyn Sopacua > <m.r.sopa...@gmail.com> > wrote: > > On Sunday 11 June 2017 08:26:44 Karim wrote: > > > UPDATE > > > > > > > > > > > >

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

2017-06-11 Thread Melvyn Sopacua
ango shell as follows: >>> from mezzanine.core.templatetags.mezzanine_tags import thumbnail >>> thumbnail('/media/uploads/foo.jpg', 80, 80) (needs to be an existing image bigger then 80x80 for any Pillow runtime related errors to surface.) -- Melvyn Sopacua -- You received

Re: [mezzanine-users] 500 internal server error

2017-06-03 Thread Melvyn Sopacua
WSGI layer, this won't help. What is your webserver + WSGI server stack? -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [mezzanine-users] Simplifying rich text

2017-06-03 Thread Melvyn Sopacua
hTextField( verbose_name=_('answer'), config_name=*'inline*', ) P.S. Once you've built such a config dict, you typically copy it from project to project, adding configs as needed, so it really isn't as daunting to create as it looks. -- Melvyn Sopacua -- You received this message becau

Re: [mezzanine-users] Simplifying rich text

2017-06-03 Thread Melvyn Sopacua
RichTextField and the ability to customize editor options at the model level. This would benefit any editor plugged in and is also the reason why a 3rd- party app would have less benefits. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Me

Re: [mezzanine-users] 500 internal server error

2017-06-03 Thread Melvyn Sopacua
d be exposed by `python manage.py check`. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+unsubscr...@googlegroups.com. F

Re: [mezzanine-users] Simplifying rich text

2017-06-03 Thread Melvyn Sopacua
inyMCE. 2) Implement the approach to RichTextField and global editor configuration from django- ckeditor, but leave TinyMCE as default. Introducing as little incompatibilities as possible would be the hard part. 3) Decide it's too much work for too little gain. -- Melvyn Sopacua -- You

[mezzanine-users] Simplifying rich text

2017-06-02 Thread Melvyn Sopacua
e avenues are worth investigating for a new major release. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+unsubscr

Re: [mezzanine-users] Re: modeltranslation

2017-06-02 Thread Melvyn Sopacua
On Thursday 01 June 2017 05:31:31 i bigoss wrote: > ok got it if anyone else in near future gets same problem some > solution is described here: > https://github.com/stephenmcd/mezzanine/pull/176 For prosperity, the correct link[1]. -- Melvyn Sopacua [1] https://github.com/s

Re: [mezzanine-users] error deploying project with modeltranslation

2017-03-14 Thread Melvyn Sopacua
s a strong need for it to step up and help out. Part of that problem, is that this particular issue[1] isn't picked up upstream. -- Melvyn Sopacua [1] https://github.com/deschler/django-modeltranslation/issues/389 -- You received this message because you are subscribed to the Google Gro

Re: [mezzanine-users] Contact Form Error

2017-02-15 Thread Melvyn Sopacua
ject.com/en/1.10/ref/settings/#email -host -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+unsubscr...@googlegr

Re: [mezzanine-users] Limiting what model type instances are listed in admin Pages menu

2017-02-15 Thread Melvyn Sopacua
gt; to display records that are instances of only specific subclass types > of Page model? The whole point of Page subclasses is to have them in hierarchy (both in front and backend). So don't subclass Page if you don't want that. -- Melvyn Sopacua -- You received this message because you are subscr

Re: [mezzanine-users] Sending an email to admins on new user profile creation

2017-02-01 Thread Melvyn Sopacua
uot;Mezzanine Users" group. > > To unsubscribe from this group and stop receiving emails from it, > > send an email to mezzanine-users+unsubscr...@googlegroups.com. > > For more options, visit https://groups.google.com/d/optout. -- Melvyn Sopacua -- You received this message because

Re: [mezzanine-users] staff member unable to login to admin

2017-01-28 Thread Melvyn Sopacua
rying to log in as the newly created user, not when you try to assign staff status to that user? > Site permissions are identical to the account which was created at > installation time (127.0.0.1:8000) And you access the site with that newly created user via this host or another? -- Melvy

Re: [mezzanine-users] Re: Rich Text Page insert image/link source is blank.

2017-01-23 Thread Melvyn Sopacua
e picker/insert link is > > unable to connect with the source. > > > > > > <https://lh3.googleusercontent.com/-ImBojiYX-GU/WIUnienl3NI/ > > GEg/eKeWVzTBzUoFZhaTb6mFQDaIfxWy- _h_gCLcB/s1600/Screen%2BShot%2B2017 > > -01-22%2Bat%2B4.39.53%2BPM.png> Thanks --

Re: [mezzanine-users] admin WYSIWIG missing with Uncaught TypeError: $elements.tinymce is not a function

2017-01-15 Thread Melvyn Sopacua
if using django-ckeditor, but that's your job to figure out. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+uns

Re: [mezzanine-users] Cartrige custom shipping by country and product category

2014-10-02 Thread Melvyn Sopacua
days payment method only to customers of the customer group B2B with credit limit order ammount - Don't offer 24 hour delivery if shipper api qualifies customer address as 'rural' My 2c. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups Mezzanine

Re: [mezzanine-users] Extending existing objects with page variants

2014-09-19 Thread Melvyn Sopacua
another caveat: You need to explicitly define the parent_link and set editable=False on it, or the admin form will bail out with a field not in form exception. I was hoping to get more input from the wild to form a doc PR. -- Melvyn Sopacua -- You received this message because you

[mezzanine-users] Extending existing objects with page variants

2014-09-18 Thread Melvyn Sopacua
don't have to refactor my or 3rd party applications in order to make them useful within Mezzanine. The method using URL patterns doesn't appeal to me, cause I expect I still have to deal with views and resulting site inconsistencies. -- Melvyn Sopacua -- You received this message because you