First time here? Check out the FAQ!

codedigger's profile - activity

2021-11-23 12:27:02 -0500 received badge Popular Question (source)
2021-11-23 12:27:02 -0500 received badge Notable Question (source)
2014-07-17 03:15:08 -0500 received badge Notable Question (source)
2013-05-10 20:30:54 -0500 received badge Famous Question (source)
2013-04-17 08:27:18 -0500 received badge Famous Question (source)
2013-02-10 11:26:12 -0500 received badge Popular Question (source)
2012-07-13 20:35:15 -0500 received badge Famous Question (source)
2011-05-11 14:39:38 -0500 commented answer Can I use MySQL InnoDB?
If I'm willing to lose full text search, would the app still work for other functions under InnoDB? I'm already using Haystack and Solr, so I can provide search on my own page.
2011-05-11 13:49:42 -0500 asked a question Can I use MySQL InnoDB?

Looks like only question and answer tables need fulltext index, which is not supported by InnoDB. What if I'm going to use a search engine for search of questions and answers anyway, can I not apply Migration 4 and use InnoDB? I have a lot of other tables in InnoDB and really don't want to fall back to MyISAM.

2011-05-03 13:14:26 -0500 asked a question New install - everyone's karma stuck at "1"

I set up a new askbot site, now the few new users all have 1 karma. Even if we try to ask question and answer them, karma still stay at 1. We can't vote up or down because none of us have enough karma to do so. What might be wrong?

2011-05-03 00:10:42 -0500 commented answer How to run startforum?
I ended up just using another server with readline already installed, run "startforum", see the resulting project directory it created, then go back to my server and manually copy over the project directory. It sounds silly, but didn't want to continue trying to recompile python. Anyway, askbot seems to be working fine now. Thanks!
2011-04-29 14:40:17 -0500 commented answer How to run startforum?
Sorry for asking beginner question. I installed readline now, but have been searching on how to recompile python. Sounds like I might mess up my current python settings by doing so. Is there a good link on how to recompile python? Alternatively, is there another way to set up a new Django project for AskBot without using startforum?
2011-04-26 15:00:23 -0500 commented answer MYSQL issue with migration 22 on install [fixed]
OK, that was the problem! Even through I override settings.py with my settings_local.py with DATABASES = {...}, I guess DATABASE_ENGINE is a DIFFERENT setting, so it worked as far as db connection goes, but the migration script was still picking up DATABASE_ENGINE. Now all migrations worked. Thanks!
2011-04-26 14:47:06 -0500 commented question How to run startforum?
The instruction at the page "Initial Configuration of Askbot" is the one I was referring to.
2011-04-26 14:46:20 -0500 commented answer How to run startforum?
Thanks for the pointer. Yes, the script is in the python bin directory. Now, when I run it, this error comes up: .../python/bin/.python2.6.bin: error while loading shared libraries: libreadline.so.5: cannot open shared object file: No such file or directory
2011-04-26 14:33:56 -0500 asked a question How to run startforum?

I'm new to askbot. In it's initial configuration instruction, it says, "initialize the site setup files by typing: startforum". Well, where do I type startforum? Where is this script? I tried "python manage.py startforum", also tried just typing in this command in the shell, but it doesn't work. Wish the documentation is more clear for beginners.

2011-04-26 14:18:42 -0500 commented answer MYSQL issue with migration 22 on install [fixed]
I'm installing askbot 0.6.79 with MySQL (MyISAM). Migration 22 is still failing. I see that there is a condition in the migration code to only apply to postgresql. But, may be it is still expecting to see the pg_language table? Error: .../MySQLdb/connections.py", line 36, in defaulterrorhandler django.db.utils.DatabaseError: (1146, "Table 'askbot.pg_language' doesn't exist"
2011-04-26 13:59:40 -0500 commented answer Why does South migration 4 failed?
Ah, thanks for the quick response. What if I have a Django site already using MySQL InnoDB with 100+ tables? Should I keep askbot in a different db, or you still strongly recommend I migrate the whole db to Postgre?
2011-04-26 13:56:28 -0500 received badge Editor (source)
2011-04-26 13:32:49 -0500 received badge Student (source)
2011-04-26 12:46:26 -0500 asked a question Why does South migration 4 failed?

I'm new to askbot. Trying to set up askbot 0.6.79 with MySQL. When running python manage.py migrate askbot, at for 0040_delete_old_tag_filter_strategies. I'm getting this error:

.../MySQLdb/connections.py", line 36, in defaulterrorhandler _mysql_exceptions.OperationalError: (1214, "The used table type doesn't support FULLTEXT indexes")

What's wrong?