First time here? Check out the FAQ!

brycenesbitt's profile - activity

2014-05-15 16:21:20 -0500 received badge Notable Question (source)
2014-03-22 04:51:15 -0500 received badge Famous Question (source)
2013-04-16 15:55:24 -0500 received badge Popular Question (source)
2012-11-13 14:01:34 -0500 received badge Famous Question (source)
2012-11-03 00:29:23 -0500 received badge Great Answer ( source )
2012-07-24 14:43:46 -0500 received badge Famous Question (source)
2012-03-04 23:24:20 -0500 commented answer What is the state of documentation for askbot project?

I'd rather have askbot be self-evident, than documented. That said the installation procedure and documentation are neither.

2012-02-29 07:40:41 -0500 received badge Necromancer ( source )
2012-02-29 07:40:41 -0500 received badge Self-Learner ( source )
2012-02-29 01:59:22 -0500 answered a question Bug: title disappears if your tag is rejected. [patch]

Solution patch: in writers.py add the following in the case of 'form not valid':

else:
    form.initial['title']= request.POST.get('title')
2012-02-29 01:10:35 -0500 received badge Commentator
2012-02-29 01:10:35 -0500 commented answer Bug: SocketServer.py timed out errors on console

I get it everywhere I run askbot. It appears in the console or on the command line that started askbot -- not the askbot logs.

2012-02-29 01:10:33 -0500 commented answer Bug: SocketServer.py timed out errors on console

I get it everywhere I run askbot. It appears in the console or on the command line that started askbot -- not the askbot logs.

2012-02-18 17:41:38 -0500 received badge Good Answer ( source )
2012-02-09 05:36:12 -0500 received badge Nice Answer ( source )
2012-02-04 17:51:35 -0500 received badge Nice Question (source)
2012-02-04 10:26:34 -0500 asked a question Bug: Maximum length of tag

If I use the defaults and enter a long tag I get error:

each tag must be shorter than 20 characters

If I change the setting "Maximum length of tag (number of characters)" to 30, and enter a long tag I get:

each tag must be shorter than 22 characters

Where did the 22 come from?

2012-01-30 21:11:50 -0500 answered a question What to improve in the askbot theme?

Make it fluid instead of fixed width. Everything else could be fixed width, but make the actual Q&A flow properly no matter the text size.

2012-01-29 15:37:53 -0500 received badge Necromancer ( source )
2012-01-27 16:03:28 -0500 commented answer Need step by step installation procedure in WebFaction

Please upvote the answer if it has been useful to you.

2012-01-27 16:02:20 -0500 commented answer Need step by step installation procedure in WebFaction

I think askbot-setup does that. It's all pretty dang confusing: i wish the askbot setup script did less, it would make setup less confusing. The paths end up all wacky.

2012-01-27 15:57:53 -0500 commented question why is mysql required? [fixed]

FYI: I'm using askbot on Django 1.3 without trouble, as of now.

2012-01-27 15:56:45 -0500 commented question customize askbot

I did this by adding a separate directory below manage.py (after laboriously moving askbot to that level), and adding a models.py there. It worked. Askbot's install script makes this all a bit harder though.

2012-01-27 15:54:47 -0500 commented answer Karma thresholds always reset to default when edited

Do you need to add a cache-control header there to keep this from happening?

2012-01-27 15:41:41 -0500 asked a question Bug: wmd editor blows it on bullets

Aghg. I thought it was my browser, but it seems pretty universal: buullets don't work right in wmd (the wysiwyg editing tool askbot uses for text areas);

I enter three rows:

Row one
Row two
Row three

And press "bullets" and they all collapse together:

  1. Row one Row two Row three

Manually entering the table is needed, though even then the spacing is large:

  1. Row one
  2. Row two
  3. Row three

External link: http://code.google.com/p/wmd/ or http://code.google.com/p/pagedown/

2012-01-27 14:28:16 -0500 asked a question Karma thresholds always reset to default when edited

If I visit the admin page askbot/settings/MIN_REP/ on my own site, I see the Karma thresholds. But if I change a number and resubmit, the page refreshes with the defaults. Is there trick to getting this to work?

Karma thresholds
Upvote Default value: 15
2012-01-27 14:25:01 -0500 asked a question Bug: title disappears if your tag is rejected. [patch]

Bug: title disappears if your tag is rejected.

If one of your tags fails the "use-these-chars-in-tags" check, the title of your question gets erased.

1) Ask question
2) Write a title
3) Put "&" or "%" in a tag name
4) Submit, observe error    "use-these-chars-in-tags".
5) Observe    title is now blank

(I used preformatted text, because on Chrome, number and bullet lists are broken)

2012-01-25 14:47:56 -0500 received badge Supporter (source)
2012-01-25 14:47:47 -0500 commented answer Django error: VariableDoesNotExist: Failed lookup for key [request] in u'[{}]'

I had the same problem here, it "went away" mysteriously.

2012-01-25 05:24:52 -0500 received badge Student (source)
2012-01-25 01:08:39 -0500 asked a question Bug: SocketServer.py timed out errors on console

When running askbot, I get the dozens of the following. What's up?

[25/Jan/2012 01:06:18] "GET /m/common/media/js/wmd/images/wmd-buttons.png HTTP/1.1" 200 11480
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 37436)
Traceback (most recent call last):
  File "/usr/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock
    self.process_request(request, client_address)
  File "/usr/lib/python2.7/SocketServer.py", line 310, in process_request
    self.finish_request(request, client_address)
  File "/usr/lib/python2.7/SocketServer.py", line 323, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/home/bnesbitt/PycharmProjects/virtualenvs/dj13/local/lib/python2.7/site-packages/django/core/servers/basehttp.py", line 570, in __init__
    BaseHTTPRequestHandler.__init__(self, *args, **kwargs)
  File "/usr/lib/python2.7/SocketServer.py", line 639, in __init__
    self.handle()
  File "/home/bnesbitt/PycharmProjects/virtualenvs/dj13/local/lib/python2.7/site-packages/django/core/servers/basehttp.py", line 610, in handle
    self.raw_requestline = self.rfile.readline()
  File "/usr/lib/python2.7/socket.py", line 447, in readline
    data = self._sock.recv(self._rbufsize)
timeout: timed out
----------------------------------------
2012-01-17 21:05:20 -0500 commented answer alwaysdata help installation - python newbie

The more you show you tried, the more people tend to want to help you.

2012-01-17 00:13:33 -0500 answered a question Need step by step installation procedure in WebFaction

This answers the same question as in http://askbot.org/en/question/445/how-to-install-askbot-on-webfaction

Here's what I did on WebFaction:

In webfaction control panel installed app "Python 2.7/Django 1.3" as askbot_webapp
In webfaction control panel created postgres database and remembered password
cd ~/webapps/askbot_webapp
git clone git://github.com/ASKBOT/askbot-devel.git myaskbot 
cd myaskbot/
ls
python-2.7 setup.py develop
askbot-setup 
Where deploy the forum (directory)? askbot2
Edit myproject.wsgi to point to 'myaskbot2.settings'
Create a second webapp for the static files
Attach this to /m within your domain.
Soft link askbot/skins/common and askbot/skins/default into the static files directory
Login: the first user to create and account becomes superuser.

Please edit this answer if you have more to add, or find something I missed.

2012-01-14 19:32:54 -0500 received badge Necromancer ( source )
2012-01-14 19:32:54 -0500 received badge Teacher ( source )
2012-01-14 19:32:48 -0500 received badge Editor ( source )
2012-01-14 19:30:57 -0500 answered a question How to install askbot on webfaction?

This is a duplicate of http://askbot.org/en/question/686/need-step-by-step-installation-procedure-in

Someone could contribute a setup script. WebFaction offers a series of such scripts: https://wiki.webfaction.com/wiki/InstallScripts

There a script present for osqa, but none for webfaction. With webfaction you have 1 click setup for django of any flavor you like (e.g. you select the python version and the django version).