Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mod_python error: ImportError: Could not import settings

Trying to get Django to work with Apache, and I'm getting the following error:

ImportError: Could not import settings 'MyDjangoApp.settings' (Is it on sys.path? Does it have syntax errors?): No module named MyDjangoApp.settings

My Django app is located in /home/user/django/MyDjangoApp/

My httpd.conf Location section looks like:

<Location "/MyDjangoApp/">
  SetHandler python-program
  PythonHandler django.core.handlers.modpython
  SetEnv DJANGO_SETTINGS_MODULE MKSearch.settings
  PythonOption django.root /MyDjangoApp
  PythonPath "['/home/user/django/MyDjangoApp/','/var/www'] + sys.path" 
  PythonDebug On
</Location>

Please tell me how to correct the location section to make Django work?

like image 475
R0b0tn1k Avatar asked Jun 07 '09 18:06

R0b0tn1k


2 Answers

I think mod_python is looking for settings in the MKSearch module which doesn't exist in side the /home/user/django/MyDjangoApp directory. Try adding the parent dir to the PythonPath directive as below:

<Location "/MyDjangoApp/">
  SetHandler python-program
  PythonHandler django.core.handlers.modpython
  SetEnv DJANGO_SETTINGS_MODULE MKSearch.settings
  PythonOption django.root /MyDjangoApp
  PythonPath "['/home/user/django/', '/home/user/django/MyDjangoApp,'/var/www'] + sys.path" 
  PythonDebug On
</Location>

Or remove the module name from the DJANGO_SETTINGS_MODULE env var as below:

<Location "/MyDjangoApp/">
  SetHandler python-program
  PythonHandler django.core.handlers.modpython
  SetEnv DJANGO_SETTINGS_MODULE settings
  PythonOption django.root /MyDjangoApp
  PythonPath "['/home/user/django/MyDjangoApp,'/var/www'] + sys.path" 
  PythonDebug On
</Location>
like image 58
sleepyjames Avatar answered Sep 21 '22 12:09

sleepyjames


Giving this answer for completeness - even though your case was different.

I've once named my django project test. Well, django was importing python module test - which is a module for regression testing and has nothing to do with my project.

This error will occur if python finds another module with the same name as your django project. Name your project in a distinct way, or prepend the path of the parent directory of your application to sys.path.

like image 20
Evgeny Avatar answered Sep 21 '22 12:09

Evgeny