First time here? Check out the FAQ!
1

Startup error: couldn't load USER_SETTINGS.EDITABLE_SCREEN_NAME
 

Hi, I'm getting this error upon performing a clean installation of askbot (dev version):

Startup error, couldn't load USER_SETTINGS.EDITABLE_SCREEN_NAME

The backtrace is as follows: Traceback (most recent call last):

File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/servers/basehttp.py", line 279, in run self.result = application(self.environ, self.start_response)

File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/servers/basehttp.py", line 651, in call return self.application(environ, start_response)

File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/handlers/wsgi.py", line 230, in call self.load_middleware()

File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/core/handlers/base.py", line 40, in loadmiddleware mod = importmodule(mw_module)

File "/usr/local/lib/python2.6/dist-packages/Django-1.1.2-py2.6.egg/django/utils/importlib.py", line 35, in import_module import(name)

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/middleware/viewlog.py", line 3, in <module> from askbot.views.readers import questions as questionsview

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/views/init.py", line 4, in <module> from askbot.views import readers

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/views/readers.py", line 29, in <module> from askbot.forms import *

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/forms.py", line 430, in <module> class EditUserForm(forms.Form):

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/forms.py", line 432, in EditUserForm if askbotsettings.EDITABLESCREEN_NAME:

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/conf/settingswrapper.py", line 46, in getattr return getattr(self._instance, key).value

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/deps/livesettings/values.py", line 353, in value val = self._value()

File "/usr/local/lib/python2.6/dist-packages/askbot-0.6.6-py2.6.egg/askbot/deps/livesettings/values.py", line 312, in _value raise SettingNotSet("Startup error, couldn't load %s.%s" %(self.group.key, self.key))

SettingNotSet: ("Startup error, couldn't load USERSETTINGS.EDITABLESCREEN_NAME", None)

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 14 years ago
live2dream95's avatar
13
live2dream95
asked 14 years ago

Comments

see more comments

1 Answer

0

Hi, what is your CACHE_BACKEND setting? (in settings.py)

Also - what OS are you using?

I assume you've ran syncdb and migrate askbot commands beforehand...

I have seen a similar error when I switch CACHE_BACKEND from locmem:/// so something else but did not investigate the source of it yet. I'll try to figure this out this weekend.

Thanks.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 14 years ago, answered 14 years ago
link

Comments

Thanks for the hints, I forgot to run syncdb and migrate commands. Now the installation appears to be working.
live2dream95's avatar live2dream95 (14 years ago)
great, that's a relief.
Evgeny's avatar Evgeny (14 years ago)
see more comments