First time here? Check out the FAQ!

Chesnaught's profile - activity

2016-08-29 05:31:34 -0500 received badge Popular Question (source)
2016-08-08 23:17:46 -0500 received badge Notable Question (source)
2016-08-08 23:17:46 -0500 received badge Popular Question (source)
2016-03-08 09:22:23 -0500 received badge Student (source)
2015-10-15 14:59:12 -0500 received badge Notable Question (source)
2015-10-15 14:59:12 -0500 received badge Popular Question (source)
2015-06-25 12:13:46 -0500 received badge Famous Question (source)
2015-05-26 07:24:22 -0500 received badge Famous Question (source)
2015-05-21 08:32:13 -0500 asked a question How do I manually accept an answer in the database?

I want posts from a specific user to be automatically accepted, thus I am doing a db trigger. But first: What exactly do I need to set for the post/thread to be accepted?

I've tried to set askbot_post.approved = 1 and askbot_thread.accepted_answer_id / accepter_answer_at but still no luck.

Cheers

2015-04-24 04:04:19 -0500 answered a question Captcha too strong for users

Any news on this topic? Nocaptcha recaptcha is something I really want in askbot.

2015-03-12 08:16:57 -0500 commented question Why is the database search so slow?

We're using MySQL

2015-02-18 14:34:06 -0500 received badge Famous Question (source)
2015-02-05 05:01:12 -0500 asked a question Why is the database search so slow?

We have a database of over 30.000 questions, and the search is very slow. The version in use is 0.7.49 Do you have any suggestions to speed up things?

2015-01-29 02:55:15 -0500 commented question How to disable recaptcha after user is authenticated?

Found out that as long as the user is "watched", recaptcha is required.

2015-01-27 04:49:22 -0500 received badge Editor (source)
2015-01-27 04:46:57 -0500 commented question How to disable recaptcha after user is authenticated?

On the ask-page. Where the user asks a question. (Anonymous users must use recaptcha to ask a question)

2015-01-26 04:36:37 -0500 asked a question How to disable recaptcha after user is authenticated?

I'm using recaptcha so anonymous users can ask a question without the need to log in. It works nicely. But I want to disable recaptcha when the user is authenticated. It obviously doesn't work just to omit the form with request.user.is_authenticated()

Edit: Updated text to make it more clear.