FieldError at /
Hello.
After installing (following the docs), and running ther server I've got the following error
FieldError at /
Unknown field(s) (a, l, _) specified for Rule
Can you help me with it ?
Hello.
After installing (following the docs), and running ther server I've got the following error
FieldError at /
Unknown field(s) (a, l, _) specified for Rule
Can you help me with it ?
This is because django-robots app was updated and Askbot did not have fixed version requirement. Added that in the repository. A release will follow shortly.
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!!!
I have the same problem.
Try with:
pip install django-robot==1.0
and after restart your server.
I have met the same problem, It takes me all day long to reinstall and uninstall them. I think I make some mistakes when I install askbot, after I analysis the traceback infomation, I found it is beacuse the Django form part has a query using get method, but django 1.5 didn't support it. Hope someone can fix it.
Now, you can download the newest source code from git, they have fix the problem. :) have a good day!
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2015-05-17 09:18:54 -0600
Seen: 6,687 times
Last updated: Sep 16 '15
i am experiencing the same issue, here. maybe a problem with the required Django version?
Then please upvote :P
Where did the Askbot code come from, what Django version do you have?
Github master , I think Django is the one in requirements. 1.5.4
I have the same problem on OpenShift. I thought it was related to the environment.