Hey all,

I've got version 0.95 installed and it all works fine from the built in
webserver on my FC5 machine.  Works awesome.  But when I move to
running it behind modpython on Fedora5's apache, the admin stops
working - more accurately I get a blank screen.  Nothing.  Not an error
from the browser or from modpython.  If I view the source of the doc
there is nothing there.  That means it is getting the Http header,
right?   It's really weird.  The only other app in the project with
only 1 view works fine in this setup.  It's is pretty simple right now
with a simple HttpResponse.

My httpd.conf (really in my python.conf but I can't see how that'll
matter)

<Location "/">
    SetHandler mod_python
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE ae.settings
    #This is the project - it is in my site-packages
    PythonDebug On
    #PythonAutoReload On
</Location>

I've copied the media folder to my www root for apache to find.  This
is a really simple application with a urls.py:

(r'^gear/$', 'ae.gear.views.index'), <- This works fine
(r'^admin/', include('django.contrib.admin.urls')),

I'm using sqlite3 for a db.  Do you think its a media thing?  Any help
would really be appreciated; I'm certainly at a loss.  Thanks in
advance.

-mhale


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to