[mezzanine-users] Re: Mezzanine 4.0.1, cartridge 0.10 --alternate not working. Database error with work around

2016-04-30 Thread Keith Irwin
I solved this problem by setting a local in settings.py, as per github issue #4 . On cloud9 I also had to install the local with sudo locale-gen en_US.UTF-8. On Saturday, August 22, 2015 at 12:45:06 AM UTC-4, Mace wrote: > > Hi, > Im trying

[mezzanine-users] Re: Mezzanine 4.0.1, cartridge 0.10 --alternate not working. Database error with work around

2016-04-30 Thread Keith Irwin
Has anyone figured this out? On a blank cloud9 workspace, I run: $ sudo pip3 install -U django mezzanine cartridge $ sudo mezzanine-project -a cartridge sample $ cd sample $ sudo python3 manage.py createdb and the last command spits back:

Re: [mezzanine-users] Re: Suggestion on how to make import and export of products using csv from admin panel?

2016-04-30 Thread Sathish Anton
Hi, This is what i did with django-import-export 1. pip install django-import-export 2.# add to settings.py INSTALLED_APPS = ( ... 'import_export',) 3. Modified lib/python2.7/site-packages/cartridge/shop and added following code from import_export import resources from

Re: [mezzanine-users] Re: Suggestion on how to make import and export of products using csv from admin panel?

2016-04-30 Thread Sathish Anton
Hi, W.r.t Product_db command i tried the following with single django pony sample data loaded with createdb. 1. python manage.py product_db --export cur.csv 2. Deleted the single django product using admin panel manualy so that there wont be any issues with indexing or sku. 3. python manage.py

Re: [mezzanine-users] Re: Suggestion on how to make import and export of products using csv from admin panel?

2016-04-30 Thread Eduardo Rivas
What have you tried so far? What errors are you getting? -- 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

[mezzanine-users] Re: Suggestion on how to make import and export of products using csv from admin panel?

2016-04-30 Thread Sathish Anton
Hi, The import seems to be an issue with both Product_db command and django-import-export. Can some one explain exact shell commands that would be required to add a product to 1. shop category 2. shop/subcategory from python manage.py shell or some other sugestion on utils available.