Questions tagged [osqa]

OSQA (Open Source Question and Answer) is an open source question-answer system written in Python with Django. The data layer relies on MySQL, PostgreSQL, Microsoft SQL Server or SQLite. OSQA is licensed under GPL version 3 or later.

OSQA is based on CNProg and uses Django.

Homepage: http://www.osqa.net/

63 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
15
votes
2 answers

Configuring django settings to work with 1.4.1. Loading template error

Here is the error I got: ImproperlyConfigured: Error importing template source loader django.template.loaders.filesystem.load_template_source: "'module' object has no attribute 'load_template_source'" Here is my loader template code: if DEBUG: …
dudebroman
  • 256
  • 2
  • 4
  • 12
13
votes
6 answers

Installing OSQA on windows (local system)

I want to install OSQA on a local Windows system. I've downloaded bitnami-djangostack-1.1.1-2-windows-installer.exe, which has django, python, mysql and apache built in. I've run a django example given on the django website and it's working…
Pankaj Khurana
  • 3,243
  • 10
  • 50
  • 79
4
votes
2 answers

How to configure Apache alias settings to let django debug toolbar work properly?

I have a problem in OSQA. Anytime, I try to enter a user's page, "500 Error" occurs such as here: http://turkrusforum.com/users/2/mertnuhoglu/ I checked the error logs. But there was nothing there. I want to install django-debug-toolbar and debug…
Mert Nuhoglu
  • 9,695
  • 16
  • 79
  • 117
2
votes
1 answer

TypeError 'NoneType' object is not iterable OSQA

i've configured well the OSQA Django but how to correct this issue when i try this url : http://localhost/questions/ask/ in debog mod : TypeError at /questions/ask/ 'NoneType' object is not iterable Request Method: GET Request URL: …
Mirlo
  • 625
  • 9
  • 26
2
votes
0 answers

get_queryset vs. get_query_set, Django 1.5 vs. 1.6

It looks like I have solved the problem by upgrading to Django 1.6. Just curious, what was going on. I am trying to integrate OSQA alongside an existing Django app, and I am encountering some very subtle issues. Just look at that --- this is one PDB…
Sergey Orshanskiy
  • 6,794
  • 1
  • 46
  • 50
2
votes
1 answer

How to publish OSQA on azure?

Can anyone help me to publish OSQA application to windows azure ? I want to publish my osqa applicatoin to azure but I can not find any proper solution. Some solution I found but they are not useful to me. some of the site which I have find are as…
Rudresh Bhatt
  • 1,935
  • 2
  • 23
  • 29
2
votes
2 answers

when adding a qestion on OSQA (django&python) its body is empty

I am currently working on OSQA, and I am having really trouble when I try to import some questions and answers from another q&a site. Searching before posting, I found this link on meta.osqa about importing data, and some typical errors, but it is…
kikerox
  • 33
  • 4
2
votes
4 answers

How to install osqa in simple steps

I am planning to start a question answer website using osqa question answer script. I want to install osqa on Apache server. Please tell me simple but detailed steps to install osqa on Apache server.
Parvinder Singh
  • 81
  • 1
  • 10
2
votes
1 answer

Django Error: Caught NoReverseMatch while rendering

I'm trying to setup a Django site (OSQA) and can't get it working. There are a few issues and one of them is when I tried to view a user's profile, I got the following exception: Can someone please point out where the problem might…
Allen Qin
  • 19,507
  • 8
  • 51
  • 67
2
votes
1 answer

How can I replace english hard-coded strings with russian text in python?

I try to localize OSQA (django + python) for russian language. A lot of string I can translate with locale-folder. But in OSQA some string was hard-coded (put in code in simple text). I try simply replace english text to russian, but get an…
2
votes
0 answers

Django translation plural not working

I am pretty new to Django. I have the following code in the template: {% blocktrans count answers.paginator.count as counter %}One Answer:{% plural %}{{counter}} Answers:{% endblocktrans %} And the following line in the django PO (generated) #:…
Pleun
  • 8,856
  • 2
  • 30
  • 50
1
vote
2 answers

Concern on hosting OSQA/Django on GAE

I'm going to build a website using OSQA which is built on Django (a famous framework of Python). I'll host this site to Google App Engine (GAE). I wonder if GAE has support all features of OSQA.? I'm also new to web admin, so I don't know that I…
bnguyen82
  • 6,048
  • 5
  • 30
  • 39
1
vote
2 answers

How to set up osqa at webfaction

requirements.txt file: django>=1.1 mysql-python python-openid psycopg2 html5lib markdown git+git://github.com/dcramer/django-sphinx.git South first, virtualenv ~/webapps/ --distribute source ~/webapps//bin/activate export…
1
vote
1 answer

OSQA translation issue: strings not present in django.po

Trying to create a translation for OSQA Fist I copied the FR locale to RU, updated the settings. Fine, Most things are working but now everything in the django.po file has been translated but still a few lines show up in English and I I cannot find…
Pleun
  • 8,856
  • 2
  • 30
  • 50
1
2 3 4 5