Re: [mezzanine-users] Trying to get Mezzanine + Cartridge + Stripe up and running

2015-01-12 Thread Stephen McDonald
Looks like it's this issue which is fixed but potentially isn't released: https://github.com/readevalprint/cartridge-stripe/pull/5 At a guess, you could try installing cartridge-stripe directly from source on Github. On Tue, Jan 13, 2015 at 11:22 AM, Andres Douglas i.andres.doug...@gmail.com

Re: [mezzanine-users] Trying to get Mezzanine + Cartridge + Stripe up and running

2015-01-12 Thread Andres Douglas
Ah, you're fantastically fast. Yes, was going to say that this line seemed to be the culprit: https://github.com/readevalprint/cartridge-stripe/blob/master/cartridge_stripe/forms.py#L17 That worked, many thanks :) On Monday, January 12, 2015 at 4:29:21 PM UTC-8, Stephen McDonald wrote: Looks

[mezzanine-users] Trying to get Mezzanine + Cartridge + Stripe up and running

2015-01-12 Thread Andres Douglas
Testing out a number of e-commerce solutions for a project with a twist of crowdsourcing. Seems like Mezzanine is the only one with Stripe support out of the box. Managed to get everything installed, which is more than I can say for most other e-commerce django solutions. Followed instructions

[mezzanine-users] Script for install bleeding-edge Mezzanine/cartridge with Python3+Django 1.7

2015-01-12 Thread Sam Kingston
Hi everyone, Just thought I would share a script that will install Mezzanine and Cartridge in a Python3 environment with Django 1.7. It pulls the latest master and pins the install at that. It was useful to me, I hope it's useful to someone else too! It just takes two arguments: ~/ $

Re: [mezzanine-users] Script for install bleeding-edge Mezzanine/cartridge with Python3+Django 1.7

2015-01-12 Thread Stephen McDonald
Nice one Sam. Hopefully we won't need this soon once I get some time to do a new release :-) On Mon, Jan 12, 2015 at 5:12 PM, Sam Kingston s...@sjkwi.com.au wrote: Hi everyone, Just thought I would share a script that will install Mezzanine and Cartridge in a Python3 environment with Django

Re: [mezzanine-users] Trying to get Mezzanine + Cartridge + Stripe up and running

2015-01-12 Thread Mario Gudelj
I see inside https://github.com/readevalprint/cartridge-stripe/blob/master/cartridge_stripe/forms.py there's this line: from django.utils.timezone import now The OrderForm __init__ method uses it in this line: year = now().year Make sure that your django version has a method now() inside