|
When I try to access my webpage, it reports an internal server error and writes a very long traceback into the logs. The last two lines of the traceback are:
I'm at a loss here, as the error appears to be happening inside django itself. (I'm trying to use postgreSQL, if that makes a difference.) EDIT: Just noticed, this may be a duplicate of this. I can't really tell because the page won't load right now. |
|
An import error means 1 of 2 things, that the python module is missing and needs to be installed or the sys.path parameter is not configured to find the module where its installed. Look for the sys.path info and check that it is valid and includes all needed directories. If you submit a support ticket we can look with you. I'm using (or trying to use) mongodb now, but you still might want to check the django setup script as this error happened on a fresh install with only the db user, pass and backend set. I just tested the current installer and the default build works, so it had to be something you changed in the code that broke the import paths. But we would need to know exactly what you changed to determine that. If you want us to look please submit a support ticket. |