On Feb 3, 12:12 am, "HenrikG" <[EMAIL PROTECTED]> wrote:
> My biggest problem was to get the Location directive right in the
> httpd.conf. It now looks like this:
>
> <Location "/">
>   SetHandlermod_python
>   PythonHandler django.core.handlers.modpython
>   PythonPath "sys.path + ['/usr/local/apache2/django']"
>   SetEnv DJANGO_SETTINGS_MODULE myproject.settings
>   PythonDebug On
>   PythonAutoReload On
> </Location>
>
> OK, maybe that path isn't the smartest, but I'm a Linux noob and I'm
> learning. The "PythonAutoReload On" means thatmod_pythonreloads all
> python modules automatically whenever they change. This is on by
> default, I read somewhere, but I figured it wouldn't hurt.

FYI, the mod_python PythonAutoReload does not cause all modules that
change to be reloaded, it only reloads certain modules. Candidates for
reloading are only those which are referenced directly by the
Python*Handler directives, and generally only those of them which are
in the Apache document tree. When Django is used the directive
basically doesn't do anything as the top level module is the
mod_python handler which isn't going to change. Thus, when using
Django, you may as well just turn PythonAutoReload to Off as it isn't
going to ever do anything or help in anyway when changes are made to
your Django application.

Graham


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to