3084: Import Error of django.core.handlers.wsgi

CZ.****@gmai***** (Google Code) (Is this you? Claim this profile.)
Dec. 11, 2013
What version are you running?
RB 1.7.13, Django 1.4.6, Python 2.6.6, mod_wsgi 3.3, Apache 2.2.16

What's the URL of the page containing the problem?
First page ever to load. E.G. Fails to start

What steps will reproduce the problem?
1. Install RB as instructed.
2. Install-config with rb-site install
3. adjust apache site-... files.

What is the expected output? What do you see instead?
Expected: The RB site loaded.
Instead: Internal server error

What operating system are you using? What browser?
Debian 6

Please provide any additional information below.
apache error.log reads:
[Mon Sep 09 11:40:03 2013] [notice] Apache/2.2.16 (Debian) mod_wsgi/3.3 Python/2.6.6 configured -- resuming normal operations
[Mon Sep 09 11:40:13 2013] [error] [client 10.15.15.11] mod_wsgi (pid=12976): Target WSGI script '/var/www/czsrv-cbreview01/htdocs/reviewboard.wsgi' cannot be loaded as Python module.
[Mon Sep 09 11:40:13 2013] [error] [client 10.15.15.11] mod_wsgi (pid=12976): Exception occurred processing WSGI script '/var/www/czsrv-cbreview01/htdocs/reviewboard.wsgi'.
[Mon Sep 09 11:40:13 2013] [error] [client 10.15.15.11] Traceback (most recent call last):
[Mon Sep 09 11:40:13 2013] [error] [client 10.15.15.11]   File "/var/www/czsrv-cbreview01/htdocs/reviewboard.wsgi", line 11, in <module>
[Mon Sep 09 11:40:13 2013] [error] [client 10.15.15.11]     import django.core.handlers.wsgi
[Mon Sep 09 11:40:13 2013] [error] [client 10.15.15.11] ImportError: No module named django.core.handlers.wsgi
[Mon Sep 09 11:40:13 2013] [error] [client 10.15.15.11] Symbolic link not allowed or link target not accessible: /var/www/czsrv-cbreview01/htdocs/errordocs

----------------------------------------------------------
reviewboard.wsgi in htdocs is:
import os
import sys

os.environ['DJANGO_SETTINGS_MODULE'] = "reviewboard.settings"
os.environ['PYTHON_EGG_CACHE'] = "/var/www/czsrv-cbreview01/tmp/egg_cache"
os.environ['HOME'] = "/var/www/czsrv-cbreview01/data"
os.environ['PYTHONPATH'] = '/var/www/czsrv-cbreview01/conf:' + os.environ.get('PYTHONPATH', '')

sys.path = ['/var/www/czsrv-cbreview01/conf'] + sys.path

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

----------------------------------------------------------
in python run as sudo the import works fine, righs change on libs folders did not help
#1 CZ.****@gmai***** (Google Code) (Is this you? Claim this profile.)
tried to insert in front of import command a 
sys.path.insert("...") command with path to my django.....egg as it allowed me in manualy started python to use the import command, still same error. Can not import.
david
#2 david
Was django installed by yourself or using a package provided by your distribution? Some distro packages put the wsgi handlers in a separate package.
david
#3 david
  • +Incomplete