From 8211eb23e4940c046e0d42a65b8d6632d1330c62 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 27 Oct 2006 02:03:15 +0000 Subject: [PATCH] Fixed #2958 -- Pointed out in docs/modpython.txt that we use instead of git-svn-id: http://code.djangoproject.com/svn/django/trunk@3939 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modpython.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/modpython.txt b/docs/modpython.txt index b88874d3d3..5177abf728 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -43,6 +43,11 @@ This tells Apache: "Use mod_python for any URL at or under '/mysite/', using the Django mod_python handler." It passes the value of ``DJANGO_SETTINGS_MODULE`` so mod_python knows which settings to use. +Note that we're using the ```` directive, not the ```` +directive. The latter is used for pointing at places on your filesystem, +whereas ```` points at places in the URL structure of a Web site. +```` would be meaningless here. + Also, if you've manually altered your ``PYTHONPATH`` to put your Django project on it, you'll need to tell mod_python::