First time here? Check out the FAQ!

Revision history  [back]

The Django version is the problem. This post:

stackoverflow.com/questions/17990704/django-forms-field-error-unknown-fields-a-l-specified-for-tablenam

For fix it, You can edit the file:

askbot/lib/python2.7/site-packages/robots/forms.py

class RuleAdminForm(forms.ModelForm):
class Meta:
    model = Rule
    #fields = "__all__"  ---> Comment this line.

Btw, Why should I need more Karma to post a Link? That doesn't have any sense!!!

The Django version is the problem. This post:

stackoverflow.com/questions/17990704/django-forms-field-error-unknown-fields-a-l-specified-for-tablenam

For fix it, You can edit the file:

askbot/lib/python2.7/site-packages/robots/forms.py

class RuleAdminForm(forms.ModelForm):
class Meta:
    model = Rule
    #fields = "__all__"  ---> Comment this line.

Btw, Why should I need more Karma to post a Link? That doesn't have any sense!!!

The Django version is the problem. This post:

stackoverflow.com/questions/17990704/django-forms-field-error-unknown-fields-a-l-specified-for-tablenam

For fix it, You can edit the file:

file: askbot/lib/python2.7/site-packages/robots/forms.py

class RuleAdminForm(forms.ModelForm):
class Meta:
    model = Rule
    #fields = "__all__"  ---> Comment this line.

You can edit the file: askbot/lib/python2.7/site-packages/robots/forms.py

class RuleAdminForm(forms.ModelForm):
class Meta:
    model = Rule
    #fields = "__all__"  ---> Comment this line.