Askbot stopped working after newest update
I have the update problem again. After update nothing works any more. When I visit my site I get the 500 internal error. I got this email to my Admin account from my askbot site:
Traceback (most recent call last):
....
NoReverseMatch: Reverse for 'mysitedjango.get_editor' with arguments '()' and keyword arguments '{}' not found.
...
How to make it working now?
The commands I've used to update:
git fetch origin master:master-updated
git checkout master
git merge master-updated
I use the ru locale and no customization, except some css and javascript I put in the build in fields of admin panel.
EDIT
When I ran python manage.py migrate
I get following message:
************************
* *
* Askbot self-test *
* *
************************
Error: No module named bs4
Please run: >pip install beautifulsoup4
To install all the dependencies at once, type:
pip install -r askbot_requirements.txt
Type ^C to quit.
If necessary, type ^C (Ctrl-C) to stop the program.
Comments
Could you give some more details? What have you done to upgrade? Are you using a staging environment to test the update before publishing it? Are you using Askbot as is or you have customized the code?
Have you done
python manage.py migrate
? It's not in the list of your commands... Also you would needpython manage.py collectstatic
.@Evegeny I've updated the question.
It's clear now that you have import errors, masked by django. I've truncated your traceback to make the question more understandable and hopefully more useful. The actual traceback is not so relevant in this case.