Questions tagged [askbot]

Askbot is a open source StackOverflow-like Q&A forum

Askbot is based on CNProg and uses Django.

GitHub page: https://github.com/ASKBOT/askbot-devel

27 questions
28
votes
3 answers

OSQA vs. Askbot?

I am going to choose a platform to develop a Q/A site. Two python-based platforms that I'm aware of, are OSQA and AskBot. I know that both are based on django (which I'm quite familiar with) and OSQA has a wider user-base. But that's pretty much…
chapar
  • 289
  • 3
  • 4
4
votes
2 answers

Getting DatabaseError: multiple default values specified for column

I can't figure out what to do to avoid this error whenever I try to make a migration using South in one of my Django projects: ERROR: Running migrations for askbot: Migrating forwards to…
Andreu C.
  • 177
  • 1
  • 2
  • 10
3
votes
1 answer

how to use sudo with curl command for setuptools install

I am trying to install python package, but when I try it tells me I need a new version of setup tools. I try to install setup tools following the python software instructions which say to use the curl command. When I do this it gives the error that…
ratrace123
  • 976
  • 4
  • 12
  • 24
2
votes
2 answers

Askbot installation - TemplateSyntaxError at /questions/ Invalid block tag: 'import'

I am totally new to askbot-django-python. please help me. I used a guide available at askbot.org to install askbot 0.10.0 in Ubuntu 15.10 server. During installation, after runserver command, when I try to access the site from remote computer,…
Babu ML
  • 21
  • 2
2
votes
2 answers

Askbot (Django) on Hostgator

I'm trying to deploy Askbot on a shared host with Hostgator, without success. The Askbot documentation talks about changing settings on the webserver, which I obviously cannot do as it is a shared web host. I initially tried deploying with fcgi,…
valuenaut
  • 303
  • 2
  • 4
  • 13
2
votes
2 answers

Askbot: Is posible to turn a whole askbot instance to "read only"?

I need to turn a whole instance of askbot to "read only". There is a configuration param or an easy way to do that? Why I need that? I created a new instance of askbot where people will participate and put links to another askbot instance as…
smartin
  • 2,957
  • 2
  • 23
  • 33
2
votes
1 answer

Askbot Static Files at Webfaction Not Served

I deployed askbot script on webfaction server by following the instructions at http://community.webfaction.com/questions/8400/need-help-for-askbot-installation. I also have done to run python2.7 manage.py collectstatic and the DEBUG setting are…
panjianom
  • 236
  • 4
  • 18
1
vote
1 answer

Not able to authenticate Askbot with LDP authentication provider

Not able to authenticate Askbot django application on Ubantu 18.04 Able to ping the LDAP server, but still it says - "Can't contact LDAP server" Error logs shows:- Traceback (most recent call last): File …
vijay jawale
  • 283
  • 3
  • 14
1
vote
1 answer

pip install askbot error - Command "python setup.py egg_info" failed with error code 1

I want to install askbot app (http://askbot.org/doc/install.html). But I encountered error during installation. I've did below actions. 1) made virtual environment under ananconda (python 3.5.2 / ubuntu 14.04) 2) installed django 1.9.8 3) made…
Alex Jin Choi
  • 80
  • 3
  • 8
1
vote
1 answer

'SortedDict' object has no attribute 'insert'

After deploying AskBot I observe an unusual error: AttributeError at /settings/QA_SITE_SETTINGS/ 'SortedDict' object has no attribute 'insert' This is the result of the following code: langs_dict =…
Amir Gonnen
  • 3,525
  • 4
  • 32
  • 61
1
vote
0 answers

Plugging Askbot into existing Django project, Aunthentication and integrating the users

I installed askbot through pip into my existing local Django project. I merged the askbot settings & Uls files with my existing files. When I go to 127.0.0.1:8000/ its getting redirected to 127.0.0.1:8000/questions. And I can see all my existing…
name
  • 571
  • 1
  • 7
  • 11
1
vote
1 answer

Django app not running after installing askbot

The application was working perfectly fine before installing askbot. I checked their docs and installed askbot as a pluggable app. And I had also merged the settings and urls. Now the forum part(askbot app) is working fine but the other part…
hammergun
  • 448
  • 3
  • 8
1
vote
1 answer

Askbot - No module named xdg.Config

I have installed Python 2.7.3 + Django 1.3.1 + Askbot and these requirements When I run my server on port 8000, and I try to establishing a connection with a browser I have this unusual error: *Could not import myapp01.deps.django_authopenid.views.…
Flat
  • 1,640
  • 1
  • 12
  • 14
0
votes
1 answer

Internal Server error while using Python OpenId with Google Authentication

I have installed askbot.org on my local machine and When I tri to use google openid, I get following error. Here is full apache log. (I have replaced some hex strings) http://bit.ly/apache_log Can someone explain to me what could be problem ?
Prafulla
  • 832
  • 1
  • 7
  • 17
0
votes
1 answer

Problems with nginx+gunicorn resolving static content

I am setting up an environment with a django application (askbot opensource project), gunicorn and nginx. With nginx and gunicorn in different docker containers. This is my nginx configuration. server { listen 80; location /static { …
Esteban Collado
  • 1,840
  • 1
  • 14
  • 15
1
2