Re: can't show admin interface

2009-09-27 Thread Wim Feijen
It does nothing to help you solve your problem, but mod_wsgi is generally preferred above mod python. Good luck solving the problem! Wim On Sep 26, 10:06 am, nausikaa wrote: > Have you done > > from yourapp.models import * > from django.contrib import admin > >

Re: can't show admin interface

2009-09-26 Thread nausikaa
Have you done from yourapp.models import * from django.contrib import admin admin.site.register(Books) in admin.py? On Sep 26, 4:55 am, pengwupeng wrote: > the environment is  apache+django, accessing   my app is ok,but i > can't access the admin interface. > the

can't show admin interface

2009-09-25 Thread pengwupeng
the environment is apache+django, accessing my app is ok,but i can't access the admin interface. the configuration of the httpd.conf is likes this below: Listen 127.0.0.1: SetHandler python-program PythonPath "sys.path+['c:/']" PythonHandler