Re: Admin section 404 error

2008-02-17 Thread Karen Tracey
On Feb 15, 2008 11:26 PM, Shadow <[EMAIL PROTECTED]> wrote: > > Error message: > > Using the URLconf defined in mysite.urls, Django tried these URL > patterns, in this order: > > 1. ^admin/ > > The current URL, my-site.com/admin, didn't match any of these. > The ^ at the beginning of the urlpat

Re: Admin section 404 error

2008-02-17 Thread Shadow
Anyone? :P On Feb 16, 3:26 pm, Shadow <[EMAIL PROTECTED]> wrote: > Error message: > > Using the URLconf defined in mysite.urls, Django tried these URL > patterns, in this order: > >1. ^admin/ > > The current URL, my-site.com/admin, didn't match any of these. > > On Feb 16, 3:23 pm,Shadow<[EMA

Re: Admin section 404 error

2008-02-15 Thread Shadow
Error message: Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order: 1. ^admin/ The current URL, my-site.com/admin, didn't match any of these. On Feb 16, 3:23 pm, Shadow <[EMAIL PROTECTED]> wrote: > Yea I have, > > from django.conf.urls.defaults import *

Re: Admin section 404 error

2008-02-15 Thread Shadow
Yea I have, from django.conf.urls.defaults import * urlpatterns = patterns('', (r'^admin/', include('django.contrib.admin.urls')), ) When the admin line is commented, django displays the "It worked!" page but when it's not it displays 404 for any directory I go to. Do I need to tell dja

Re: Admin section 404 error

2008-02-15 Thread Julien
Well, that looks like your URLConf is not set up properly. Have you included the admin urls? (r'^admin/', include('django.contrib.admin.urls')), On Feb 16, 3:01 pm, Shadow <[EMAIL PROTECTED]> wrote: > I should note that it's a django 404 error and not apache so > django is running > > On Fe

Re: Admin section 404 error

2008-02-15 Thread Shadow
I should note that it's a django 404 error and not apache so django is running On Feb 16, 5:11 am, Shadow <[EMAIL PROTECTED]> wrote: > Hi I'm new to django/python > > I managed to set everything up going through everything in the > documentation, up to the part where I install the admin inter

Admin section 404 error

2008-02-15 Thread Shadow
Hi I'm new to django/python I managed to set everything up going through everything in the documentation, up to the part where I install the admin interface. When I test the admin section through django's server it works fine. But when I test it on my apache/mod_python server, it gives a 404 er