I was making great progress in getting some stuff going with Django then I blew myself up. not sure how and what to do next... I use Eclipse on win 64 vista box, all was going along..fine but I was having some issues with installing packages,,which I think I've finally got a feel for but in the process I have messed up my config to the degree that the really simple stuff is broken. I did make mods to "stite -packages in Python and I suspect that somehow that's related, did not keep right notes... should I maybe just delete all that... ?? (kind of hate to since it has the mysql driver,,,but it is pointing in that direction) I have re installed, updated Python 2.62, and updated the svn version of Django 1.1 but I'm still broken. I have a super simple app which used to work fine in admin, now it opens admin, but gives me 404 on any attempt to do an action... (add, update etc.)
Another big clue is that Python.exe does not terminate when I exit Eclipse... the normal server executing button is not showing above the console, so there is no way to stop it.. Request URL: http://localhost:8000/auth/group/add/ Using the URLconf defined in djangotest.urls, Django tried these URL patterns, in this order: 1. ^$ 2. ^hello/$ 3. ^time/$ 4. ^admin/doc/ 5. ^admin/ Urls.py is: from django.conf.urls.defaults import * # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() from djangotest.views import hello,current_datetime urlpatterns = patterns('', ('^$', include(admin.site.urls)), ('^hello/$', hello), ('^time/$', current_datetime), # Example: # (r'^djangotest/', include('djangotest.foo.urls')), # Uncomment the admin/doc line below and add 'django.contrib.admindocs' # to INSTALLED_APPS to enable admin documentation: (r'^admin/doc/', include('django.contrib.admindocs.urls')), # Uncomment the next line to enable the admin: (r'^admin/', include(admin.site.urls)), ) I know I've done something really dumb, any ideas? --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---