First time here? Check out the FAQ!

ozkolonur's profile - activity

2021-09-17 10:14:46 -0500 received badge Taxonomist
2015-10-27 10:09:13 -0500 received badge Popular Question (source)
2013-10-15 08:26:19 -0500 received badge Popular Question (source)
2012-07-23 09:48:54 -0500 received badge Famous Question (source)
2012-06-21 15:45:31 -0500 received badge Famous Question (source)
2012-04-21 15:35:57 -0500 received badge Supporter ( source )
2012-04-21 15:35:48 -0500 answered a question ImportError: cannot import name signals

It seems another module, django-userprofile(http://code.google.com/p/django-profile/ ) in our project is having a collision with askbot.

I am trying to use askbot as reuseable django app within our project. Actually it seems to work fine when it is standalone.

I cant disable avatar functionality in django-profile. It is not featurized.

Can I disable avatar app in askbot? Or do you have any idea to come over this problem?

2012-04-20 10:24:06 -0500 asked a question ImportError: cannot import name signals

I dont think my problem is related with this thread hence I am using python 2.6.

I did a manage.py syncdb and I got this error.

  File "/home/ubuntu/adimsayar_biz/askbot/models/question.py", line 18, in <module>
    from askbot.models import signals
ImportError: cannot import name signals

Do you have an idea why this import fails? Here is the full log my askbot version is 7.40

2012-04-17 14:26:56 -0500 received badge Scholar ( source )
2012-04-17 08:21:32 -0500 received badge Student (source)
2012-04-17 06:30:36 -0500 received badge Editor (source)
2012-04-17 06:29:20 -0500 asked a question Problems installing with mysql

Hi all,

I want to install latest version (7.40) using "mysql"

Why not postgresql? Because my project is using mysql, I want to integrate askbot to it soon

What I did so far?

git clone git://github.com/ASKBOT/askbot-devel.git askbot_deploy
cd askbot_deploy
virtualenv .
python setup.py develop
created a database named "askbot"
askbot-setup, and I have answered questions
set DATABASE_ENGINE = mysql, save and exit
python manage.py syncdb

--- I got a warning here: (1146, "Table 'askbot.askbot_badgedata' doesn't exist"))

python manage.py migrate

--- I got error here:_mysql_exceptions.OperationalError: (1061, "Duplicate key name 'askbot_badgedata_56ae2a2a'")

I have read this thread: http://askbot.org/en/question/3170/askbot_badgedata-does-not-during-initial-database

I tried this scenario using InnoDB and MyIsam as default storage engines.

Here are the logs for those operations: http://pastebin.me/bc23773578d79a55882d7ced4e13751d

My Question: Is askbot 7.40 broken for MySQL? If so, are there any specific version that I can use with MySQL?

Thanks for making this great project open-source.