Hi, I have djangp-svn installed (revision 7574) on an archlinux system. for testing i created an empty project with: "django-admin.py startproject deneme". when i run the test server i can see the default welcome page of django.
then i installed mod_python (v 3.3.1) on apache (2.2.8.2). i compile it from source. without any errors. i configure httpd.conf and test the installation via mod_python.testhandler. there is no problem. so the problem is then i try to access the empty project i created above i get an error message: "ImproperlyConfigured: Error importing middleware django.middleware.common: "No module named base64mIme" " i did not touch any of the default project files and on test server no problem. but with mod_python pfff. here is my location directive in httpd.conf: <Location "/deneme/"> SetHandler python-program PythonHandler django.core.handlers.modpython #PythonHandler mod_python.testhandler SetEnv DJANGO_SETTINGS_MODULE deneme.settings PythonDebug On PythonPath "['/home/zekus/devel'] + sys.path" </Location> any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---