I am going through the tutorial from the site, however I have named my files a bit different. My project is named Social and my application is named Network.
settings.py ROOT_URLCONF = 'social.urls' TEMPLATE_DIRS = ( "C:/python25/scripts/social/network/templates/admin", "C:/python25/scripts/social/network/templates/registration", urls.py from django.conf.urls.defaults import * urlpatterns = patterns('', (r'^network/$', 'social.network.views.index'), (r'^accounts/', include('registration.urls')), (r'^admin/', include('django.contrib.admin.urls')), ) Now, when i go to http://127.0.0.1:8000/blog or http://127.0.0.1/index/ I get the following error message. Request Method: GET Request URL: http://127.0.0.1:8000/index/ Using the URLconf defined in social.urls, Django tried these URL patterns, in this order: 1. ^network/$ 2. ^accounts/ 3. ^admin/ The current URL, index/, didn't match any of these. Anybody have any ideas on what I might be doing wrong? I have gone over this, and talked about in #django on IRC, no one has any ideas what I am doin wrong here. Thanx, Dave --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---