Re: Validators and django.contrib.postgres.fields JSONField

2016-08-27 Thread Ryan Causey
So I've dug into this a little more, and I've come up with the debugger trace below. -> dummyModelInstance.full_clean() c:\program files\python35\lib\site-packages\django\db\models\base.py(1210) full_clean() -> self.clean_fields(exclude=exclude) c:\program files\python35\lib\site-packages\dja

Re: Redis error on initial migration

2016-08-27 Thread M Hashmi
I did nothing in code yet just installed the app from repo and dependencies. But this error doesn't make sense to me so I thought somebody might had gone through this. Author has same question about this in "issue" are at github. Question is not answered yet. Regards, Mudassar On Sat, Aug 27, 201

Re: Redis error on initial migration

2016-08-27 Thread James Schneider
On Aug 27, 2016 1:49 PM, "M Hashmi" wrote: > > Hi, > I am trying to setup "saleor" e-commerce on windows and getting this error. > > (saleorpro) C:\Users\Mudassar\saleorpro\saleor>manage.py makemigrations > SystemCheckError: System check identified some issues: > > CRITICALS: > userprofile.User: (

Redis error on initial migration

2016-08-27 Thread M Hashmi
Hi, I am trying to setup "saleor" e-commerce on windows and getting this error. (saleorpro) C:\Users\Mudassar\saleorpro\saleor>manage.py makemigrations SystemCheckError: System check identified some issues: CRITICALS: userprofile.User: (auth.C009) .is_anonym ous must be an attribute or property r

Re: iregex doesn't work properly

2016-08-27 Thread Sergiy Khohlov
Not sure that problem is related to character_set_server due to highest priority of create table option. I'm using postgres as default. I'm proposing to check latin chars and turn on mysql debugging in case of your permission. localization coding of MySql is here http://dev.mysql.com/doc/ref

Re: iregex doesn't work properly

2016-08-27 Thread Denis Yu
Sergiy, Thank you for reply I checked following parameters: mysql> show create table clients_order_process; (clients_order_process - it's my table) | clients_order_process | CREATE TABLE `clients_order_process` ( `id` int(11) NOT NULL AUTO_INCREMENT, `step` int(11) NOT NULL, `step_descr

Re: Not upoading image files in django

2016-08-27 Thread ludovic coues
You didn't provide your template file. Have you set enctype='multipart/form-data' on your form tag ? 2016-08-27 15:03 GMT+02:00 Mannu Gupta : > Image file is not getting uploaded using Django my all model,view and forms > files are attached with this link > > -- > You received this message because

Re: iregex doesn't work properly

2016-08-27 Thread Sergiy Khohlov
Try to check this via mysql shell. It will be nice to know codepage at system, database and django project. Have you checked this with Latin charset already ? 27 серп. 2016 16:06 "Denis Yu" пише: > Hi, > > Someone please, help to resolve my problem with iregex ! > > using Django 1.9 > mysql Serv

iregex doesn't work properly

2016-08-27 Thread Denis Yu
Hi, Someone please, help to resolve my problem with iregex ! using Django 1.9 mysql Server version: 5.7.13-0ubuntu0.16.04.2 (Ubuntu) python 2.7 I got the record in mysql in table Order_process: +-+--+---+-+--++ | id | step

Not upoading image files in django

2016-08-27 Thread Mannu Gupta
Image file is not getting uploaded using Django my all model,view and forms files are attached with this link -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to dj

Non-Admin Dashboard

2016-08-27 Thread Ali khan
Hi, I am building ecommerce related to books and I am looking for some non-admin dashboard besides Django-dash because its not ported to latest version. Can someone refer me the best approach or a sample project even which helps me to understand how to go for it? Regards, Ali -- You received th

Re: How to set up a form from an existing view

2016-08-27 Thread ludovic coues
POST is a dictionnary, with all the input there was in the form which contain the submit button that was clicked. The key will be the name of the input and the value will be the input value. For exemple, with this html: If the user cli

Re: How to set up a form from an existing view

2016-08-27 Thread Aaron Weisberg
Thanks ludovic I'll try that. I have a very basic form question. What attribute gets posted in the .POST? Is that value? In input? Secondly, the default value in the function, is that a type like text or integer or is it just a place holder like "Chicago" or "2" Thanks On Aug 26, 2016 11:33 AM,