Thanks for the help. I didn't think about checking permissions. I
have the site working now and I think it was a combination of
permissions and file paths. Here's the httpd.conf file that works:
<VirtualHost *:80>
ServerName music.sensiblestaffing.com
DocumentRoot /home/published/www/django/
SetHandler python-program
PythonHandler django.core.handlers.modpython
PythonDebug On
PythonPath "['/home/published/www/django', '/home/
published/www/django/musicshare', '/usr/lib/python2.5'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE musicshare.settings
</VirtualHost>
In PythonPath, removing the trailing slash seemed to correct the last
issue I had. I also noticed that www-data must be the owner of the
files with 755 permissions. It also helped to remove all of the .pyc
files before restarting apache.
Maybe this will help someone else in the future...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---