After I Installed followed by the documentation but change the path from /home/osqa/ to /var/opt/osqa I got error in my log

ImportError: Could not import settings 'osqa.settings' (Is it on sys.path?): No module named osqa.settings

and below this is my osqa.wsgi config

import os
import sys
sys.path.append('/var/opt/osqa')
sys.path.append('/var/opt/osqa/osqa-server')
# The first part of this module name should be identical to the directory name
# of the OSQA source.  For instance, if the full path to OSQA is
# /home/osqa/osqa-server, then the DJANGO_SETTINGS_MODULE should have a value
# of 'osqa-server.settings'.
os.environ['DJANGO_SETTINGS_MODULE'] = 'osqa.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

Did I miss something?

asked 26 Aug '11, 00:39

Wingless-Archangel's gravatar image

Wingless-Arc...
111
accept rate: 0%

closed 26 Aug '11, 01:52

rickross's gravatar image

rickross ♦♦
12.5k2814972

@Wingless-Archangel, this posting is more a problem report than a question. OSQA bugs should be reported at jira.osqa.net, and OSQA support issues should go to support@osqa.net. I am closing this posting now.

(26 Aug '11, 01:48) rickross ♦♦

The question has been closed for the following reason "Post is not a question" by rickross 26 Aug '11, 01:52

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×298
×156
×113
×45

Asked: 26 Aug '11, 00:39

Seen: 312 times

Last updated: 26 Aug '11, 01:52

powered by OSQA