First time here? Check out the FAQ!

live2dream95's profile - activity

2017-03-09 07:35:26 -0500 received badge Notable Question (source)
2017-03-09 07:35:26 -0500 received badge Popular Question (source)
2012-07-19 22:11:58 -0500 received badge Famous Question (source)
2010-10-01 12:54:10 -0500 received badge Student (source)
2010-10-01 12:51:42 -0500 received badge Scholar ( source )
2010-07-24 10:30:34 -0500 commented answer Startup error: couldn't load USER_SETTINGS.EDITABLE_SCREEN_NAME
Thanks for the hints, I forgot to run syncdb and migrate commands. Now the installation appears to be working.
2010-07-24 10:30:04 -0500 marked best answer Startup error: couldn't load USER_SETTINGS.EDITABLE_SCREEN_NAME

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.

2010-07-23 20:43:36 -0500 asked a question 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)