I am in the process of trying to deploy a Django site using mod_wsgi. I had no problems installing mod_wsgi. However I did run into a few problems when trying to set the site.
The first thing I ran into is that i forgot to install Mysql-python. So, I downloaded the source and did the following: tar -zxvf Mysql-pythonxxxx.tar.gz No problems there python setup.py build I did get some message about needing setuptools, but it automatically took care of that. The build went successfully with no errors. sudo python setup.py install Again everything seemed to go just fine with no errors. But when I tried to load the site I still received a 500 error and the apache error log had the following: mod_wsgi (pid=5070): Exception occurred within WSGI script '/home/ missed/projectsmt/pjsmt.wsgi'. Traceback (most recent call last): File "/usr/local/lib/python2.5/site-packages/django/core/handlers/ wsgi.py", line 197, in __call__ response = self.get_response(request) File "/usr/local/lib/python2.5/site-packages/django/core/handlers/ base.py", line 53, in get_response response = self._real_get_response(request) File "/usr/local/lib/python2.5/site-packages/django/core/handlers/ base.py", line 63, in _real_get_response response = middleware_method(request) File "/usr/local/lib/python2.5/site-packages/django/contrib/sessions/ middleware.py", line 13, in process_request engine = __import__(settings.SESSION_ENGINE, {}, {}, ['']) File "/usr/local/lib/python2.5/site-packages/django/contrib/sessions/ backends/db.py", line 2, in <module> from django.contrib.sessions.models import Session File "/usr/local/lib/python2.5/site-packages/django/contrib/sessions/ models.py", line 3, in <module> from django.db import models File "/usr/local/lib/python2.5/site-packages/django/db/__init__.py", line 17, in <module> backend = __import__('%s%s.base' % (_import_path, settings.DATABASE_ENGINE), {}, {}, ['']) File "/usr/local/lib/python2.5/site-packages/django/db/backends/mysql/ base.py", line 9, in <module> import MySQLdb as Database File "build/bdist.linux-i686/egg/MySQLdb/__init__.py", line 19, in <module> File "build/bdist.linux-i686/egg/_mysql.py", line 7, in <module> File "build/bdist.linux-i686/egg/_mysql.py", line 3, in __bootstrap__ File "/usr/local/lib/python2.5/site-packages/setuptools-0.6c5- py2.5.egg/pkg_resources.py", line 2470, in <module> File "/usr/local/lib/python2.5/site-packages/setuptools-0.6c5- py2.5.egg/pkg_resources.py", line 343, in __init__ File "/usr/local/lib/python2.5/site-packages/setuptools-0.6c5- py2.5.egg/pkg_resources.py", line 358, in add_entry File "/usr/local/lib/python2.5/site-packages/setuptools-0.6c5- py2.5.egg/pkg_resources.py", line 1577, in find_on_path OSError: [Errno 13] Permission denied: '/home/missed' The permission denied error doesn't make much sense, obviously it is able to read the project files, or it wouldn't get this far. Also, I don't know what all the errors about setuptools are, that doesn't seem to make any sense either. It seems to me that I am still having problems with the Mysql-python install, but being the install went smoothly, I don't know where I should be looking. Any ideas? Thanks, Steven Potter --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---