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

2014-04-03 Thread Kyle Pennell
Thanks, Josh. That cleared that. I'm surprised Googling didn't yield the same advice (pip install future). Oh well. Last problem is this pesky: [107.170.215.138] Executing task 'all' --- all --- --- install --- $ cat /etc/default/locale - Fatal error: sudo() encountered an

Re: [mezzanine-users] What should/would example Fab file settings look like?

2014-04-03 Thread Kyle Pennell
Thanks again, everyone. On Wednesday, April 2, 2014 12:15:20 PM UTC-6, Josh Cartmell wrote: That we did Ken ;) Kyle, now that you bring it up, those two settings are actually unnecessary and I should probably just remove them. Take a look at

[mezzanine-users] Re: Models are not working

2014-04-03 Thread José San Gil
Have you used syncdb or migrate to create the tables? On Thursday, April 3, 2014 12:55:20 AM UTC-4:30, Tameen Malik wrote: I have created Models like *models.py file:* from django.db import models from mezzanine.pages.models import Page class Author(Page): dob =

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

2014-04-03 Thread Matthew Summers
Does that file exist? -- 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, visit

[mezzanine-users] Products admin page times out accessing files from S3 on Heroku

2014-04-03 Thread Paul Becotte
So, I am up to 63 products on my cartridge site. I am serving images from S3 using django-storages. The backend is set to use DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' The problem is that when I access the products menu in the admin site, I get a Heroku timeout. If I

Re: [mezzanine-users] Products admin page times out accessing files from S3 on Heroku

2014-04-03 Thread Stephen McDonald
Short answer is that the thumbnailing built into Mezzanine really isn't very compatible with a remote storages backend like S3. I'd suggest using something else for thumbnailing, while disabling Mezzanine's - quickest way to do that would be to add your own thumbnail template tag that overrides