On Nov 15, 8:32 pm, pacman <[EMAIL PROTECTED]> wrote: > Well, from what I can tell, there should not be any incompatibilities > since as of right now the farthest that I have gotten was creating > models. I didn't see anything from the wiki list that would pose a > problem. I tested out on the django built-in server yesterday and it > runs like a charm. So my thoughts are that it has something to do with > mod-python or apache. I didn't notice this error until I svn up'd > django source and removed my pyc files. > > I checked my apache log file to and noticed the same errors as above.
Why don't you post then the mod_python bits of your Apache configuration and in particular what you have PythonPath directive set to. For good measure, also post your urls.py file as well so can see how you reference code within the site and whether it would work against what you have set PythonPath directive to. FWIW, is there any way that Django could be changed so that it doesn't just discard the original traceback indicating why the settings.py file wasn't imported in the first place. Ie., currently it does: try: mod = __import__(self.SETTINGS_MODULE, {}, {}, ['']) except ImportError, e: raise EnvironmentError, "Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s" % (self.SETTINGS_MODULE, e) Could it perhaps convert the original exception tracback into the string and stuff it into this exception such that it is printed out, or output it in some other way? If we had that information it would be so much easier to solve these problems as we would know whether it is a case of not finding the settings module or there being an error in it, or not finding some other module that it in turn tries to import. Graham --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---