First time here? Check out the FAQ!

raspi's profile - activity

2016-03-17 11:52:13 -0500 received badge Notable Question (source)
2013-12-28 19:37:29 -0500 received badge Popular Question (source)
2012-06-29 04:23:03 -0500 received badge Famous Question (source)
2012-01-30 04:46:52 -0500 received badge Famous Question (source)
2011-09-16 10:55:02 -0500 marked best answer easy_install error setuptools_hg

Raspi, I am afraid that won't help because you need setuptools to read the requirements, but we will add this to the documentation. Thanks.

2011-09-16 10:55:02 -0500 received badge Scholar ( source )
2011-09-16 09:48:38 -0500 asked a question easy_install error setuptools_hg

easy_install askbot gives error mentioning setuptools_hg on Ubunty Natty so I had to easy_install setuptools_hg first. Maybe add setuptools_hg as requirement in the askbot package?

2011-03-21 13:25:23 -0500 received badge Nice Question (source)
2011-03-21 13:25:23 -0500 received badge Good Question (source)
2010-12-06 11:25:38 -0500 received badge Notable Question (source)
2010-12-06 11:25:38 -0500 received badge Popular Question (source)
2010-10-01 12:54:10 -0500 received badge Student (source)
2010-10-01 12:51:42 -0500 received badge Autobiographer
2010-06-19 19:30:00 -0500 commented question RSS feeds?
Yes I saw the error. :)
2010-06-18 21:46:39 -0500 asked a question RSS feeds?

Askbot should provide at least these RSS feeds:

  • Newest questions
  • Newest questions for given tag
2010-06-18 21:46:29 -0500 asked a question RSS feeds?

Askbot should provide at least these RSS feeds:

  • Newest questions
  • Newest questions for given tag
2010-06-18 21:46:22 -0500 asked a question RSS feeds?

Askbot should provide at least these RSS feeds:

  • Newest questions
  • Newest questions for given tag
2010-06-15 03:18:07 -0500 commented answer Unknown column 'auth_user.is_approved' in 'field list' [fixed]
Ok. Got it to work. It was probably old South which caused some weird DB stuff.
2010-06-15 01:09:13 -0500 asked a question Unknown column 'auth_user.is_approved' in 'field list' [fixed]

I just installed fresh askbot from github and when I try to login with Google OpenID, I get:

Exception Type: OperationalError at /account/register/
Exception Value: (1054, "Unknown column 'auth_user.is_approved' in 'field list'")

Env:

Request Method: POST
Request URL: http://127.0.0.1:8000/account/register/
Django Version: 1.1.1
Python Version: 2.6.5
Installed Applications:
['django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.admin',
 'django.contrib.humanize',
 'django.contrib.sitemaps',
 'debug_toolbar',
 'forum',
 'django_authopenid',
 'debug_toolbar',
 'south']
Installed Middleware:
('django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.locale.LocaleMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'forum.middleware.anon_user.ConnectToSessionMessagesMiddleware',
 'forum.middleware.pagesize.QuestionsPageSizeMiddleware',
 'forum.middleware.cancel.CancelActionMiddleware',
 'django.middleware.transaction.TransactionMiddleware',
 'debug_toolbar.middleware.DebugToolbarMiddleware',
 'forum.middleware.view_log.ViewLogMiddleware')

Log

/home/raspi/web/bv/forum/utils/forms.py TIME: 2010-06-15 09:49:28,083 MSG: forms.py:clean_next:18 next url is /
/home/raspi/web/bv/django_authopenid/views.py TIME: 2010-06-15 09:49:28,084 MSG: views.py:register:457 request method is POST
/home/raspi/web/bv/django_authopenid/views.py TIME: 2010-06-15 09:49:28,084 MSG: views.py:register:460 trying to create new account associated with openid
/home/raspi/web/bv/forum/utils/forms.py TIME: 2010-06-15 09:49:28,084 MSG: forms.py:clean_next:18 next url is /
/home/raspi/web/bv/forum/middleware/pagesize.py TIME: 2010-06-15 09:49:28,099 MSG: pagesize.py:process_exception:33 have exception (1054, "Unknown column 'auth_user.is_approved' in 'field list'")

Migration says:

$ python manage.py migrate forum
Running migrations for forum:
- Nothing to migrate.
 - Loading initial data for forum.

I checked the DB with MySQL Query Browser and there is authuser table, but not that *isapproved* field. I also tried to remove all tables and then ran syncdb & migrate forum again.