When I run the Django development server the admin site for my test site looks great. But when I run the site using Apache with the address http://localhost/admin all of the great look and feel provided by Django is missing. The functionality is still there, but it is stripped of all of its great look.
Any ideas what I need to do to Apache (or anything else) to make the admin look the same as it does when running the development server? Below is code I added to the http.conf file for Apache. The name of my tutorial is "mysite" and resides at c:\django\mysite. Any help would be appreciated. <Location "/"> SetHandler python-program PythonPath "['C:\django'] + sys.path" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonDebug On </Location> <Location "/media/"> SetHandler None </Location> <LocationMatch "\.(jpg|gif|png)$"> SetHandler None </LocationMatch> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---