[mezzanine-users] Extending user accounts

2014-04-09 Thread xc0m
Hi, I have been trying to extend the user accounts which come default with mezzanine. I have followed this guide http://mezzanine.jupo.org/docs/user-accounts.html?highlight=users but get the following error messages: in the web browser: Exception Value: MyProfile matching query does not

[mezzanine-users] Re: TinyMCE dialogs not rendering over SSL

2014-04-09 Thread Nick Read
Hi, I just had the same issue but I'm using and nginx + uwsgi setup. Our entire site is using https. I thought I'd post how I got it working because it may help others in the future. As mentioned put this into settings.py: SECURE_PROXY_SSL_HEADER = (HTTP_X_FORWARDED_PROTOCOL, https) Nginx

[mezzanine-users] Re: TinyMCE dialogs not rendering over SSL

2014-04-09 Thread Nick Read
TYPO: example.com + example.co.uk should be the same obvs. -- 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

Re: [mezzanine-users] Re: TinyMCE dialogs not rendering over SSL

2014-04-09 Thread Matthew Summers
Hi there, First, tinymce uses an iframe for its pop-ups, so make sure you use: add_header X-Frame-Options SAMEORIGIN; and not: add_header X-Frame-Options DENY; I have a feeling that the issue is with the iframe coming from http in an https page. Second, you definitely do not want to over-ride

[mezzanine-users] Is there a way to auto-tweet or automatically push tweets and posts to social media sites for all

2014-04-09 Thread eric . frost
Is there a way to auto-tweet or automatically push tweets and posts to social media sites for all new blog posts in Mezzanine? I am thinking of something like one of this plug-ins for Wordpress -- https://managewp.com/automatically-share-blog-posts Thanks! Eric -- You received this message

[mezzanine-users] Subclassing SiteRelated

2014-04-09 Thread Matt Mansour
Howdy all - With a quick glance at the core I think I know the answer but thought I'd post the question as well. Would the best way to integrate an external django app - one that does not subclass Displayable - into Mezzanine's multi-tenancy functionality be to change the models of the app

Re: [mezzanine-users] New Package mezzanine-agenda

2014-04-09 Thread Stephen McDonald
Looks good James, thanks a lot for sharing. Might be worth expanding on the original intentions and noting the differences with mezzanine-events at the top of the README - mezzanine-events gets relatively a lot of activity and people might be confused by the choice. I think some notes around that

Re: [mezzanine-users] Is there a way to auto-tweet or automatically push tweets and posts to social media sites for all

2014-04-09 Thread Stephen McDonald
There isn't, but we have everything in place in Mezzanine already to be able to do this really simply - namely all the key/secret credentials as well as the mezzanine/twitter app itself. I'll add this shortly and it'll be available in the next release:

Re: [mezzanine-users] Fab Script ImportError: No module named future.builtins

2014-04-09 Thread Kyle Pennell
Mathew, thank you. That was totally my bad. Didn't follow the instructions well enough that Josh laid out. I needed to change root in visudo to the user I created. On Saturday, April 5, 2014 8:54:35 AM UTC-6, Matthew Summers wrote: You might also check that the user you connect with via

Re: [mezzanine-users] Fab Script ImportError: No module named future.builtins

2014-04-09 Thread Kyle Pennell
Hey Josh, Would it be possible for you to send me the Tree Document Structure where Vanilla_mezz is? I could then double check I have things in the right place. On Friday, April 4, 2014 2:18:42 PM UTC-6, Josh Cartmell wrote: what if you run: sudo cat /etc/default/locale I'm at a bit of a

Re: [mezzanine-users] Fab Script ImportError: No module named future.builtins

2014-04-09 Thread Kyle Pennell
This thread is turning into a monster. I'll start a new one for this specific FABRIC question if that's ok. On Wednesday, April 9, 2014 7:45:26 PM UTC-5, Kyle Pennell wrote: Basically hitting this: out: abort: repository /opt/vanilla_mezz/project not found! Can't figure out why it can't

Re: [mezzanine-users] New Package mezzanine-agenda

2014-04-09 Thread James Pells
Stephen, I have in fact updated the readme on github as I understand the confusion. This plugin gives you Event functionality for your Mezzanine sites. Very similiar to mezzanine-events but rather than implementing Events as a custom Page object and managing through the Pages admin it is it's

Re: [mezzanine-users] Subclassing SiteRelated

2014-04-09 Thread Josh Cartmell
Yes, Mezzanine's multi tenancy features rely on the fields/managers added by SiteRelated ;) On Wed, Apr 9, 2014 at 12:23 PM, Matt Mansour slackbabb...@gmail.comwrote: Howdy all - With a quick glance at the core I think I know the answer but thought I'd post the question as well. Would the

[mezzanine-users] Re: Serving static files in development without runserver (with gunicorn)

2014-04-09 Thread Mario Gudelj
I just tried doing this and it didn't work for me. I develop on Mac and deploy on Linux. runserver is the bomb! One of the best things about Django. I hope it won't go away any time soon. On Saturday, April 5, 2014 1:40:16 AM UTC+11, Matthew Summers wrote: Hello, I've seen a few threads