On Feb 13, 2008 6:04 PM, <[EMAIL PROTECTED]> wrote: > > Trying to get django-registration up and running, and I bumped into > this error: > > TemplateDoesNotExist at /accounts/register/ > registration/registration_form.html > > BUT: below, I can see that Django actually found the template, which I > created and placed in the place specified by the documentation: > > Django tried loading these templates, in this order: > > * Using loader > django.template.loaders.filesystem.load_template_source: > o /home/jonathan/dev/django_projects/termworm/templates/ > registration/registration_form.html (File exists) > * Using loader > django.template.loaders.app_directories.load_template_source: > o /home/jonathan/django_trunk/django/contrib/admin/templates/ > registration/registration_form.html (File does not exist) >
Does the process attempting to load the template (apache?) have permission to read that file? I believe when it says "(File exists)" but still fails to load it, the normal cause is that permissions don't allow reading. Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

