Django Caught an exception while rendering: No module named registration
Posted
by Arno Smit
on Stack Overflow
See other posts from Stack Overflow
or by Arno Smit
Published on 2010-06-08T15:17:48Z
Indexed on
2010/06/08
15:22 UTC
Read the original article
Hit count: 466
I seem to have run into a bit of an issue.
I am busy creating an app, and over the last few weeks setup my server to use Git, mod_wsgi to host this app.
Since deploying it, everything seems to be running smoothly however, I had to go through all my files and insert the absolute url of the project to make sure it works fine.
on my local machine
from registration.models import UserRegistration
on server
from myapp.registration.models import UserRegistration
Am I doing something wrong?
And this has also caused an issue for me where I cannot access my django admin interface.
All i get is this: Caught an exception while rendering: No module named registration
Exception Value: Caught an exception while rendering: No module named registration
As far as I am concerned my app has all the relevant urls, but it does not seem to work.
Thank you in advance
© Stack Overflow or respective owner