From fe8ca41e6302f2588f3757fbb3fb50a62cf113ab Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 18 Jul 2005 13:57:25 +0000 Subject: [PATCH] Fixed #57 -- Added some more helpful mod_python information to tutorial 2 -- thanks, Manuzhai! git-svn-id: http://code.djangoproject.com/svn/django/trunk@172 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial02.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index b64206cb659..c764bceeddb 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -67,6 +67,7 @@ Now let's take the opportunity to hook Django into Apache/mod_python. Edit your SetHandler python-program PythonHandler django.core.handler SetEnv DJANGO_SETTINGS_MODULE myproject.settings.admin + PythonDebug On This tells Apache: "Use mod_python for any URL at or under '/admin/', using the @@ -75,6 +76,11 @@ so mod_python knows which project to use. Note that we're passing the path to the ``admin`` settings, not the ``main`` settings. That's because this is the admin site, which has slightly different settings. +Also, if you've manually altered your ``PYTHONPATH`` to put your project on it, +you'll need to tell mod_python:: + + PythonPath "['/path/to/project'] + sys.path" + You can also add directives such as ``PythonAutoReload Off`` for performance. See the `mod_python documentation`_ for a full list of options.