Fixed #3801 -- Added note about double-escaping Windows paths when configuring
mod_python. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4877 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5787603c8b
commit
1ccdcbf765
|
@ -54,6 +54,19 @@ on it, you'll need to tell mod_python::
|
||||||
|
|
||||||
PythonPath "['/path/to/project'] + sys.path"
|
PythonPath "['/path/to/project'] + sys.path"
|
||||||
|
|
||||||
|
.. caution::
|
||||||
|
|
||||||
|
Is you are using Windows, remember that the path will contain backslashes.
|
||||||
|
This string is passed through Python's string parser twice, so you need to
|
||||||
|
escape each backslash **twice**::
|
||||||
|
|
||||||
|
PythonPath "['c:\\\\path\\\\to\\\\project'] + sys.path"
|
||||||
|
|
||||||
|
or use raw strings::
|
||||||
|
|
||||||
|
PythonPath "[r'c:\\path\\to\\project'] + sys.path"
|
||||||
|
|
||||||
|
|
||||||
You can also add directives such as ``PythonAutoReload Off`` for performance.
|
You can also add directives such as ``PythonAutoReload Off`` for performance.
|
||||||
See the `mod_python documentation`_ for a full list of options.
|
See the `mod_python documentation`_ for a full list of options.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue