On Wed, 2008-12-03 at 21:27 -0800, garagefan wrote: > I've recently set up a virtual server w/ godaddy and followed > http://www.howtoforge.com/how-to-install-django-on-fedora9-apache2-mod_python > to install django. > > I'm following the tutorial and am up to setting up the admin section > and configuring the urls.py for the polls model. this is what is > happening when i uncomment the line it says to. > http://kennethdavid.net/kdwCode/admin/ >
The error message tells you exactly what the problem is: the URL you are using for the admin is not the pattern you are trying to match (your URL Conf pattern is expecting /admin/, not /kdwCode/admin/). So adjust the URL patter. > i'm using kdwCode instead of mysite, and have been through out the > tutorial. > > I'm pretty much new to running my own server, and obviously to python > and django. Everything has been, thus far, set up as per the tutorial. > > http://www.djangoproject.com/documentation/0.96/tutorial02/ Seriously, if you're just getting started, is there any reason you aren't using Django 1.0? There were only a few thousand bug fixes and code improvements since 0.96; you'll see lots of benefits. The only people using 0.96 should be those with existing sites using that code. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

