So I started a new django project on a system that has another project. I use subdomains and mod_wsgi to handle the direction to the various projects. The direction seems to be working just fine.
For some reason, though, this second project is insist my urls.py and settings.py files should be located at settings/urls.py and settings/settings.py. Any ideas? It completely ignores the perfectly valid urls.py file that's sitting there (with a couple of filters as test urls). It also ignores any urls.py files I actually put at settings/urls.py (as a test). I made ROOT_URLCONF='urls' as opposed to ROOT_URLCONF='projectname.urls' as django never seems to like the former.
Anyway, I'm completely stumped, and after a couple of hours searching through everything, I can't for the life of me figure out where I should even look. Any ideas?