Re: [mezzanine-users] Re: trying to use cartridge-payments

2014-01-23 Thread Luc Milland
Hi, > I have checked it It does not exist in database. As I can recall, the only thing I did to create it in database in the site I am building now, is what Josh B wrote : - adding the EXTRA_MODEL_FIELDS definition for callback_uuid - running schemamigration in the way Stephen advices here : http:

Re: [mezzanine-users] Re: trying to use cartridge-payments

2014-01-23 Thread Jaroslaw Boss
Hi Luc , Thanks for your help I have checked it It does not exist in database. I've found another thing... This time I have installed everything in new envelope and instead of doing createdb --noinput after mezzanine-project -a cartridge project_name I have added payment settings to settings.

Re: [mezzanine-users] Re: trying to use cartridge-payments

2014-01-23 Thread Luc Milland
Hello, does the column exist in the database or not ? Message suggest it does not, but did you check it ? If not, I guess something went wrong with the migration. Luc Le jeudi 23 janvier 2014 à 11:26 -0800, jaroslaw.b...@gmail.com a écrit : > After many many tries I am still getting same error >

[mezzanine-users] Re: trying to use cartridge-payments

2014-01-23 Thread jaroslaw . boss
After many many tries I am still getting same error Can anyone help? -- 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

Re: [mezzanine-users] Re: trying to use cartridge-payments

2014-01-22 Thread Jaroslaw Boss
My pip freeze: Cartridge==0.9.2 Django==1.6.1 Mezzanine==3.0.6 Pillow==2.3.0 South==0.8.4 bleach==1.4 cartridge-payments==0.97.0 filebrowser-safe==0.3.1 future==0.9.0 grappelli-safe==0.3.4 html5lib==0.999 oauthlib==0.6.1 pisa==3.0.33 pytz==2013.9 requests==2.2.0 requests-oauthlib==0.4.0 six==1.5.2

Re: [mezzanine-users] Re: trying to use cartridge-payments

2014-01-21 Thread Jaroslaw Boss
Yes I did -- 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 https://groups.google.com/gr

[mezzanine-users] Re: trying to use cartridge-payments

2014-01-21 Thread Josh B
Did you add this to your settings.py? EXTRA_MODEL_FIELDS = ( # ... ( "cartridge.shop.models.Order.callback_uuid", "django.db.models.CharField", (), {"blank" : False, "max_length" : 36}, ), # ... ) If so did you run python manage.py migrate On Tue