[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-06-06 Thread bob hosk
Hi Brad, Thanks again for the reply. I tried again with these settings (see https://github.com/fpghost/mezzdemo/blob/master/settings.py), and still the exact same error for me. This is proving stubborn indeed! I should note I'm working on the local dev server at the moment, so for my domain I

[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-05-28 Thread bob hosk
Still no joy sadly. I uploaded the bare bones mezzanine fresh install,only with attempts in the settings to use s3 storage to git: g...@github.com:fpghost/mezzdemo.git, if anyone would be so kind as to pull and see if it works with their bucket. (don't worry I'll change the django secret key

[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-05-27 Thread bob hosk
Hi Brad, Sorry it's taken me so long to get back to you on this, after your fantastic reply. It's been a very hectic week I tried exactly the settings you most recently posted, and unfortunately I'm still hitting the 500 error when attempted to use the upload featured image section of the

[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-05-21 Thread bob hosk
Hi, Many thanks for taking the time to write such a detailed reply. By thumbnails do you mean the featured images for the blog? If so yes I was planning on storing that, plus other user uploaded media, and static files on s3. So using the bugfix you pointed me to I created the file

[mezzanine-users] changing editable form element style to absolute positing rather than fixed.

2014-05-21 Thread bob hosk
When EDIT is clicked for an 'editable-form' it seems style=position: fixed; z-index: ; gets added to the element style. I would like to change this to position:absolute, as the fixed position does not work with the rest of my theme. This style is not in the

[mezzanine-users] Re: HomePage with contact form

2014-05-20 Thread bob hosk
Hi many thanks for all the different approaches here. In the end I did return {'contact_form': form} in my page processor, then {% fields_for contact_form %} in the template and all worked. It seems that the name 'form' must be passed to template by something else that was overriding it. --

[mezzanine-users] Re: HomePage with contact form

2014-05-20 Thread bob hosk
it. On Sunday, 18 May 2014 14:43:34 UTC+2, bob hosk wrote: I've made a custom HomePage model, so I can edit the home page content (headers etc) from the admin easily. I'm trying to add a 'Contact us' form to the bottom of this page. In my 'myproject/mytheme' dir I have 'page_processors.py

[mezzanine-users] Re: Amazon s3 storage backed, upload image to blog from admin HTTP 500 on demo site.

2014-05-20 Thread bob hosk
My settings.py is here http://paste.ubuntu.com/7494954/, and I think everything else is just the default mezzanine project install. local_settings.py is here http://paste.ubuntu.com/7494963/ -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To

[mezzanine-users] Re: HomePage with contact form

2014-05-20 Thread bob hosk
But how would that deal with the actual business processing of the form? -- 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] HomePage with contact form

2014-05-18 Thread bob hosk
I've made a custom HomePage model, so I can edit the home page content (headers etc) from the admin easily. I'm trying to add a 'Contact us' form to the bottom of this page. In my 'myproject/mytheme' dir I have 'page_processors.py' containing from django import forms from django.http import