On Sep 14, 7:31 am, Dan06 <dan.king...@yahoo.com> wrote:
> I've 'successfully' deployed django in a development environment on
> Apache2. While, I've got it to work, I'm
> thoroughly confused by the PythonPath setting needed for it to work.
>
> I don't understand why I need to give the directory that contains the
> django 'project' AND the directory that contains the django
> 'application' (see PythonPath below), since the directory that
> contains the django 'project' also contains the django
> 'application' (see directory structure below).
>
> Anyone know why I need to specify both 'project' and 'application'
> directories?

Because you haven't prefixed all your imports or module path
references in urls.py with the name of the site.

Graham


> PythonPath "['/var/django_projects/', '/var/django_projects/test/'] +
> sys.path"
>
> Directory structure:
>
> var/
> | django_projects/ <--- General directory for all django work/projects
> | | test/ <--- Django project directory created by: django-admin.py
> startproject test
> | | | test_app1/ <--- Django app directory created by: python
> manage.py startapp test_app1
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to