First time here? Check out the FAQ!

jeffmad's profile - activity

2021-12-03 02:36:23 -0500 received badge Popular Question (source)
2015-12-01 05:41:25 -0500 received badge Popular Question (source)
2014-09-22 12:26:23 -0500 received badge Popular Question (source)
2014-03-31 04:31:30 -0500 received badge Famous Question (source)
2013-12-24 10:17:06 -0500 received badge Scholar ( source )
2013-12-16 11:29:48 -0500 asked a question What is the difference between livesearch/autocomplete and search button?

I noticed a difference when searching. On askbot.com, if I search for "zurb" then no results come up in live search / autocomplete. If instead I click the search button, 4-5 results are found. The difference seems to be that when you click the search button, the answer text is searched and the results are properly surfaced. The livesearch/autocomplete search seems only to use tags and question text.

Is there a reason for this (performance?) or is it an oversight

2013-12-10 12:46:59 -0500 received badge Famous Question (source)
2013-12-02 01:06:05 -0500 received badge Supporter ( source )
2013-11-23 14:55:15 -0500 received badge Nice Answer ( source )
2013-11-22 22:59:24 -0500 received badge Teacher ( source )
2013-11-22 14:56:03 -0500 answered a question Unable to add second user after fresh install and using postgresql

/admin seems to be broken. I received the same error when trying to promote a user to super user. Evgeny had responded by suggesting that some extra code is needed in the signal handler to do the delete.

I also experienced a lot of errors when running the migrations, errors that stopped the script, after the initial syncdb.

You could add the user via the signup page or wait for a fix.

2013-11-21 11:11:18 -0500 commented question anyone else see update user in admin causing errors?

sorry, I didn't express myself well. I meant to show that I have all migrations successful through 170, but I am still seeing this error wherein I cannot modify a user's status because of the foreign key constraint. I had initially suspected that some migration must have failed to make this error happen. I will take a look at the m2m_changed with pre_delete and try to make a patch. I would think that this is a common case to elevate someone to staff or superuser.

2013-11-19 15:09:47 -0500 asked a question anyone else see update user in admin causing errors?

Brand new askbot install latest code within 1 week. linux centOS, postgresql 9.3, python 2.7.5.

running python manage.py runserver hostname -i:8000

I added the first user to get an admin user.
Second user by normal signup.
Then I go into /admin as first user and try to give the second user "staff" status.

but I get a database error:

update or delete on table "auth_user_groups" violates foreign key constraint "authusergroups_ptr_id_refs_id_e728db87" on table "askbot_groupmembership" DETAIL: Key (id)=(7) is still referenced from table "askbot_groupmembership".

it seems that in order to do this, one must first delete rows from askbot_groupmembership.

migrations all run, but somehow I am still getting this error 170 | askbot | 0170_auto__add_field_group_read_only

if anyone has any ideas, I'd appreciate some advice.

2013-11-14 11:50:11 -0500 received badge Enthusiast
2013-11-13 00:47:43 -0500 answered a question NameError: global name 'User' is not defined (Fresh install) (askbot only)

I just did a new install with latest from askbot on github. The machine is a new linux box with python 2.7 and postgresql 9.3. Everything went well until I did python manage.py syncdb and python manage.py migrate askbot

I received DataBaseError 17 times, usually because a Constraint already existed and thus could not be created again, or because it did not exist and therefore could not be dropped. To get around this, I kept psql running and manually dropped a database constraint if required (alter table foo drop constraint bar) or I would open the migration file and comment out code that was trying to remove constraints that did not exist. Then I would run the migration again and it would succeed.

I also received many harmless "fatal errors" in the migrations, usually for adding a column that already existed. Overall it was not fun, but I am glad it is over.

The most difficult part was getting askbot to run under gunicorn, as it could not find the wsgi.py file and thus would not start. I finally found a solution to add an entry in the gunicorn_conf.py file.

pythonpath='/opt/askbot/deploy'
raw_env='DJANGO_SETTINGS_MODULE=settings'

I have nginx proxying requests back to gunicorn, which is running under supervisord. Now all is well on this box, but still more work to do with LDAP authentication.

2013-11-09 16:57:13 -0500 commented question NameError: global name 'User' is not defined (Fresh install) (askbot only)

I am getting something similar- brand new install python 2.7, postgresql 9.3, linux. homepage shows up find, but when i click sign in, i get an error: column askbot_anonymousquestion.is_anonymous does not exist LINE 1: ..."."title", "askbot_anonymousquestion"."tagnames", "askbot_an... so something is wrong with the migrations. I have tried doing syncdb --all, and migrate askbot, migrate django_authopenid

2013-11-03 09:54:30 -0500 received badge Famous Question (source)
2013-08-03 11:37:25 -0500 asked a question 0.7.49 is coming?

0.7.48 has been the most current release for some time now. Is askbot building toward a release or is it best to just deploy the latest?

i noticed askbot.com is still running 0.7.48. The reason I ask is simply to understand so that I can plan, I am not trying to be whiny or demanding.

2013-05-28 16:20:09 -0500 received badge Famous Question (source)
2013-05-18 05:36:30 -0500 received badge Taxonomist
2013-02-27 16:25:54 -0500 commented answer live search issue with enter key on sandbox

I am using latest code: $ git log -2 commit cec681f1b4551e3d8588cf2d22e4eae3a8c08b66 Author: Evxxxx Fxxxxx <xxxx> Date: Tue Feb 26 19:38:21 2013 -0300

allowed search by email address in the user search bar
2013-02-27 16:15:42 -0500 received badge Editor (source)
2013-02-27 16:03:55 -0500 asked a question live search issue with enter key on sandbox

with latest code 0.7.48

On askbot.org if I do live search (e.g. migration) and then use up and down arrow keys to select a question on the drop menu and then press enter key when I find the one I want to see, everything works fine.

In my sandbox on the other hand, (python setup.py develop; python manage.py runserver '127.0.0.1:8000') then the enter key does not take me to the question. Instead I am taken to some other search (http://localhost:8000/questions/scope:all/sort:activity-desc/query:abacus/page:1/).

I have narrowed down the problem to two "keydown" handlers getting installed.

in live_search.js, FullTextSearch sets the keydown hander

// enable query box
var main_page_eval_handle;
//this._query.keydown(this.makeKeyDownHandler());
this._query.keyup(function(e){

and SearchDropMenu installs another keydown handler in createDom

$(document).keydown(this.makeKeyHandler());

It seems to me that the handler in SearchDropMenu performs the correct action - navigating to the url of the item. I commented out the keydown for FullTextSearch and it works as expected.

The mysterious part for me is that I used Chrome to test this my sandbox and askbot.org/en/questions side by side. Using the debugger, I could see that the askbot.org executed the proper keydown handler every time and on my sandbox it executed the other keydown handler every time.

Should there be only one key event handler? Is there something different about production and sandbox that would make one execute instead of another?

2012-02-02 12:07:27 -0500 commented answer search results not what I expect - possible defect

thanks for your answer. I'll look into migrating but at first blush it does not sound easy.

2012-01-31 13:59:18 -0500 received badge Student (source)
2012-01-31 12:07:23 -0500 asked a question search results not what I expect - possible defect

we noticed this problem in our company's askbot installation.

Here is how to reproduce it: if one searches for "can i edit the footer" on askbot.org, the question with the same title does not appear in the search results. in other words, if you search using the title of a question, that question does not appear in the results. Maybe something to do with the common words "can I edit the", but I would think that since the question is tagged with "footer" that it would show up.

Hopefully by writing these keywords in my question I have not broken the repro steps above.

Thanks for your insight into this