Re: [mezzanine-users] Twitter posting for blog posts

2015-03-06 Thread Iain Mac Donald
Did you install python-twitter? Regards, Iain. -- 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

[mezzanine-users] TinyMCE and CSS classes

2015-03-13 Thread Iain Mac Donald
I wanted to add some CSS classes to the editor dropdown, e.g. pullquotes, but on initial investigation it would seem to involve the non-trivial creation of an TinyMCE plugin. Is there an easier way? Regards, Iain. Mezzanine 3.1.10 -- You received this message because you are subscribed to

Re: [mezzanine-users] Introducing Mezzanine's Core Development Team

2015-05-11 Thread Iain Mac Donald
Funny, I'd always thought there was a core team ;-) Well done folks and Steve, congrats on the new job! -- Regards, Iain. -- 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: TinyMCE4 - Problems on deployed site

2015-11-10 Thread Iain Mac Donald
On Wed, 11 Nov 2015 07:07:29 +1030 Danny wrote: > My overall solution was to make my entire site HTTPS... not elegant, > I know, but probably better in this security conscious world :) and don't forget ranking:

Re: [mezzanine-users] Mezzanine cartdridge installation issue

2015-11-12 Thread Iain Mac Donald
On Thu, 12 Nov 2015 10:09:38 + (UTC) Shayaan wrote: > $ pip install mezzanine > $ pip install -U cartridge Installing Mezzanine installs Mezzanine, installing Cartridge installs Cartridge + Mezzanine. I don't know what happens when you pip install both, maybe you just

Re: [mezzanine-users] IO Error on Upload - Firefox but not Chrome

2015-10-07 Thread Iain Mac Donald
I suffered from this problem a while back but unfortunately I never took notes at the time :-( I seem to remember the problem didn't occur when I was running the Django server on localhost but it did happen when I was running it on another host on my LAN. When I moved to production with Gunicorn

[mezzanine-users] Using links

2015-10-16 Thread Iain Mac Donald
Never used links until this morning. I wanted to have a structure like this: Fruit Apples Bananas Pears Apples, Bananas and Pears are children of Fruit. I didn't want any content in Fruit and instead if someone clicked on Fruit it would go to the top child, in this example, Apples. So, I

Re: [mezzanine-users] Meta tags on Home-page stopped working

2015-10-17 Thread Iain Mac Donald
If your index page is created manually, as opposed to through the admin, I think you will need to create the meta stuff yourself. At least that is what I've always done. -- Regards, Iain. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group.

Re: [mezzanine-users] Meta tags on Home-page stopped working

2015-10-17 Thread Iain Mac Donald
What happens if you disable your theme? -- Regards, Iain. -- 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 view data from contact form

2016-03-11 Thread Iain Mac Donald
On Thu, 10 Mar 2016 23:25:51 -0800 (PST) winarto saputro wrote: > I want to know where's data go after user hit submit button. In the database. If you have correctly setup the form you should receive each submission via email and a CSV file (including all current

Re: [mezzanine-users] Domain exception handling

2016-03-19 Thread Iain Mac Donald
On Sat, 19 Mar 2016 07:10:02 -0700 (PDT) wh4n wrote: > For instance if someone enters hello.example.com it will display 404? You should deal with this at the web server before it gets to Django. However, there is also the allowed hosts mechanism, see:

Re: [mezzanine-users] No Metadata editing enabled in admin, no fields visible

2016-03-29 Thread Iain Mac Donald
On Tue, 29 Mar 2016 03:00:27 -0700 (PDT) byezy wrote: > doesn't work. any other thoughts? *I think* I had a similar problem a while back but I didn't make a note. From memory the browser that had the problem had dom storage disabled. Enabling dom storage fixed the

Re: [mezzanine-users] IO Error on Upload - Firefox but not Chrome

2016-04-22 Thread Iain Mac Donald
On Fri, 22 Apr 2016 09:12:02 -0700 (PDT) Rodrigo Gadea wrote: > Resurrecting this... :) I haven't encountered this problem since writing the post that you quoted. I have since upgraded Mezzanine to 4.1.0 and I am pretty sure I have upgraded Firefox too. You might also

Re: [mezzanine-users] Re: Mezzanine 4.0.1, cartridge 0.10 --alternate not working. Database error with work around

2016-05-01 Thread Iain Mac Donald
On Sat, 30 Apr 2016 12:55:15 -0700 (PDT) Keith Irwin wrote: > Has anyone figured this out? On a blank cloud9 workspace, I run: > > $ sudo pip3 install -U django mezzanine cartridge > $ sudo mezzanine-project -a cartridge sample > $ cd sample > $ sudo python3 manage.py

Re: [mezzanine-users] Re: UnicodeDecodeError: 'locale' codec can't decode byte 0xe2 in position 0: Invalid or incomplete multi

2016-07-31 Thread Iain Mac Donald
You don't have the sample data installed, do you? I had an error message similar to that which I thought should have been resolved by setting: SHOP_CURRENCY_LOCALE = 'en_GB.utf8' but actually there was still a problem with the encoding of the files/filenames of the sample gallery. I deleted

Re: [mezzanine-users] Contact Form Error

2017-02-13 Thread Iain Mac Donald
On Mon, 13 Feb 2017 01:38:42 -0800 (PST) Richard Jackson wrote: > Exception Value: [Errno 111] Connection refused Can you access the SMTP server? -- Regards, Iain. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group.

Re: [mezzanine-users] Contact Form Error

2017-02-13 Thread Iain Mac Donald
On Mon, 13 Feb 2017 12:28:50 + Richard Jackson wrote: > What's the best way to > test that? Python, system utility like mailx or you could communicate directly using telnet: https://www.port25.com/how-to-check-an-smtp-connection-with-a-manual-telnet-session-2/ MTAs

Re: [mezzanine-users] Event / calendar plugin?

2016-10-12 Thread Iain Mac Donald
On Wed, 12 Oct 2016 11:15:30 -0700 (PDT) Julien Ricard wrote: > https://github.com/jpells/mezzanine-agenda Using the above on a Mezz 4.10 site, works for me. mezzanine-agenda uses its own content type in the same way as Blog posts do. Google maps are nicely integrated.

Re: [mezzanine-users] Local .css file not updating, working fine when deployed

2017-03-17 Thread Iain Mac Donald
On Fri, 17 Mar 2017 19:16:39 + Richard Jackson wrote: > is there anything else that should be done there? Nope. Just mentioning likely gotchas. Are you using the Django server locally? Have you tried using HTTP headers and Firebug etc.? -- Regards, Iain. -- You

Re: [mezzanine-users] Local .css file not updating, working fine when deployed

2017-03-17 Thread Iain Mac Donald
On Fri, 17 Mar 2017 11:57:11 -0700 (PDT) Richard Jackson wrote: > I'm having a strange issue where my local static css files aren't > being read when I'm developing locally collectstatic? debug=true? -- Regards, Iain. -- You received this message because you are

Re: [mezzanine-users] Tiny MCE customisation

2017-04-07 Thread Iain Mac Donald
You just need to add it to the TinyMCE plugins: section and you should be good to go. For convenience, I keep a copy of tinymce_setup.js in my theme for local modifications. -- Regards, Iain. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users"

Re: [mezzanine-users] how to use bsbanners help ??

2017-04-26 Thread Iain Mac Donald
On Wed, 26 Apr 2017 00:12:06 -0700 (PDT) i bigoss wrote: > Can anyone help with detailed template explanation or working > example? The PYPI page describes the template snippets: https://pypi.python.org/pypi/mezzanine-bsbanners I noticed the requirements include

Re: [mezzanine-users] example.com!

2017-08-24 Thread Iain Mac Donald
On Thu, 24 Aug 2017 15:55:27 -0700 (PDT) Simon Bradley wrote: > Now when i press it, it replaces localhost with example.com! You probably haven't configured your domain in the Sites section. You will need to enter it as: 127.0.0.1:8000 while using the built-in server.

Re: [mezzanine-users] mezzanine-captcha problem

2017-11-15 Thread Iain Mac Donald
I'm using 0.0.5 on a site and it works for me (using the instructions on Github). The captcha doesn't appear in the blog admin but you should see it on the front-end. The captcha should appear, as a selectable field, on the admin contact form. I also have this set: CAPTCHA_CHALLENGE_FUNCT =

Re: [mezzanine-users] media library giving me table with images that are original.

2017-11-16 Thread Iain Mac Donald
Ah yes, this caught me out too. You either need to use Mezzanine from the master branch, where this issue has been fixed, or downgrade to an earlier version of Pillow. https://github.com/stephenmcd/mezzanine/issues/1781 Regards, Iain. -- You received this message because you are subscribed to

Re: [mezzanine-users] mezzanine-captcha problem

2017-11-16 Thread Iain Mac Donald
On Thu, 16 Nov 2017 10:59:24 +1100 Mike Dewhirst wrote: > Not sure what the admin contact form might be. The interface you use when creating a contact form from the admin back-end. Is it not possible to create a fresh Mezzanine install in a virtualenv and try out the

Re: [mezzanine-users] mezzanine-captcha problem

2017-11-15 Thread Iain Mac Donald
Did you remember to add: COMMENT_FORM_CLASS = "mezzacaptcha.forms.CaptchaThreadedCommentForm" which is needed for use in the blog? Regards, Iain. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop

[mezzanine-users] Thumbnail generation failing silently

2017-11-03 Thread Iain Mac Donald
Just fired-up a fresh install of Mezzanine 4.2.3 on both my dev and production machines and I noticed thumbnails are failing. The thumbnail directories get created but not the files. Pillow seems to be installed correctly and I can create thumbnails from both the Python interpreter and Django

Re: [mezzanine-users] Thumbnail generation failing silently

2017-11-03 Thread Iain Mac Donald
On Fri, 3 Nov 2017 15:42:49 + Iain Mac Donald <mezzan...@picturenow.co.uk> wrote: > Both the dev and production machines have previous installs of > Mezzanine which create thumbnails just fine (installed a few months > back). Hmmm, I went back to the version of Pillow used in

Re: [mezzanine-users] Thumbnail generation failing silently

2017-11-03 Thread Iain Mac Donald
Hello Eduardo, Thanks! Don't know how I missed all these bug reports; would have saved some head scratching. -- Regards, Iain -- 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

Re: [mezzanine-users] Deployed mezzanine in production but posts aren't showing up

2018-03-10 Thread Iain Mac Donald
On Sat, 10 Mar 2018 06:40:42 -0800 (PST) moraya...@gmail.com wrote: > I published posts half an hour ago but aren't showing > up. Weird thing, if I login as admin I can see posts. Have you published them for a future date/time? -- Regards, Iain. -- You received this message because you are

Re: [mezzanine-users] Placeholders as Menu Items.

2018-04-07 Thread Iain Mac Donald
On Fri, 6 Apr 2018 20:09:57 -0700 (PDT) Peter Murphy wrote: > One more question: when you said you are creating a 'top-level' menu > item - did you mean at the same level as About and Contact? Yes. Although, when I created the Mezz site I did it without creating the

Re: [mezzanine-users] Placeholders as Menu Items.

2018-04-06 Thread Iain Mac Donald
Hello Peter, I had tried "menuplaceholder" both at the top and bottom of installed apps, clickable in either place. Any other ideas? Using Mezz 4.2.3, Django 1.10 and Python 2.7.13 -- Regards, Iain. -- You received this message because you are subscribed to the Google Groups "Mezzanine

Re: [mezzanine-users] Placeholders as Menu Items.

2018-04-05 Thread Iain Mac Donald
Hello Peter, Great idea. I have used Eduardo's technique a few of times, but a dedicated solution is welcome. I have tried Menuplaceholder in a test copy of Mezzanine, but I am finding that the top-level "dummy" menu item is clickable. Address bar changes to dummy location and shows an empty

Re: [mezzanine-users] Placeholders as Menu Items.

2018-04-09 Thread Iain Mac Donald
On Sun, 8 Apr 2018 19:21:20 -0700 (PDT) Kusanagi Yu wrote: > Hello Iain, if you're still clickable on placeholder menu Thanks. Latest version of menuplaceholder is working just fine. -- Regards, Iain. -- You received this message because you are subscribed to the

Re: [mezzanine-users] Re: how to configure the www version of the url

2018-10-19 Thread Iain Mac Donald
I don't use the included fabric files, so I'm not familiar with them. If it works with the dev server, I wouldn't think there would be anything amiss with Django/Mezzanine. Are you using any additional apps? Have you tried disabling your theme and using the default Mezzanine one? --

Re: [mezzanine-users] Re: how to configure the www version of the url

2018-10-19 Thread Iain Mac Donald
Does your site load correctly when viewed using the dev server? If it does, then the problem is likely with your application server (Gunicorn or whatever) or your web server (nginx or Apache). You might also want to check you haven't got something wrong with your custom CSS. Regards, Iain. --