After migration fandjango to version 4.2., I've got an error when I access my facebook application:
Exception Value: [u'Enter valid JSON']
Exception Location: /usr/local/lib/python2.7/dist-packages/jsonfield/fields.py in pre_init, line 77
Trace:
/usr/local/lib/python2.7/dist-packages/jsonfield/subclassing.py in set obj.dict[self.field.name] = self.field.pre_init(value, obj) ...
jsonfield.subclassing.Creator object at 0x2a5c750
obj
User: My User
value u''
/usr/local/lib/python2.7/dist-packages/jsonfield/fields.py in pre_init raise ValidationError(_("Enter valid JSON")) ...
▼ Local vars
Variable Value
self
jsonfield.fields.JSONField: extra_data
obj
User: My User
value u''
I have upgraded fandjagno using pip install -upgrade fandjango, python manage.py migrate fandjango.
There were another problems:
-No module named jsonfield, so I installed it using pip
-No module named dateutil.tz, so I installed it as well.
-Also it asked for property DJANGO_SITE_URL, which was not defined in the settings object. I putted also it in the settings file. However I didn't find any documentation about this property.
So now I am trying to figure out what else is needed.