Hey guys, I'm just frustrated now any help would be appreciated.
I've copied all the required media files to my
/home/public_html/mydomain/media
I've set settings.py media root and url to point to the above
my .conf settings are the following
<VirtualHost *:0000>
####################################################################
# Django-specific settings.
# Before making any changes,
# Please read
http://www.djangoproject.com/documentation/modpython/
####################################################################
# Location for the django app
<Location "/">
# Where 'mysite' is your Django app...
SetEnv DJANGO_SETTINGS_MODULE ready.settings
# Point to your python lib directory, where your app should
be saved..
PythonPath "['/home/advanced/rchan/lib/python/'] +
sys.path"
# For speed, but may require stopping and starting the
service during
# development..
PythonAutoReload Off
# Turn this to On during development, off for production.
PythonDebug Off
# Leave this alone (unless you know what you're doing)
SetHandler python-program
PythonHandler django.core.handlers.modpython
</Location>
Alias /media "/home/advanced/rchan/public_html/mydomain/media"
# Location for non-django files (images, sound, movies, etc)
<Location "/media/">
SetHandler None
</Location>
<LocationMatch "\.(jpg|gif|png)$">
SetHandler None
</LocationMatch>
</VirtualHost>
I can get to mydomain.com/admin and the login appears, and the CSS
appears.
However, after I log in, I get the internal server 500 error, and with
debug mode on, it keeps telling me that the error is that the cookie is
being tampered with??
Any thoughts?
Thanks
Sincerely,
Exhausted newbie coder
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---