On 8/19/07, shabda <[EMAIL PROTECTED]> wrote: > I am *very* confused here, I have only installed mod_python, and > nothing specific to django. SO how would the line > PythonHandler django.core.handlers.modpython work?
If you have Django installed on the server and on the Python path, it will work. > And what do I specify in > SetEnv DJANGO_SETTINGS_MODULE mysite.settings > If my site is under /var/www/html/python, with the settings file as / > var/www/html/python/foo/settings.py should I write, > SetEnv DJANGO_SETTINGS_MODULE foo.settings > (or) SetEnv DJANGO_SETTINGS_MODULE python.foo.settings If 'python' is the directory that's on the Python path, you want 'foo.settings'. Keep in mind, though, that it's generally a *bad* idea to place your Python code in the document root of the server (assuming that's what you've done since you say it's in /var/www/html); if anything ever goes wrong with mod_python and it serves those as plain-text files instead of routing to the Django handler, your code could be exposed for all the world to see. And remember that the Python code can live anywhere on the server, as long as: 1. The directory it's in is on the Python import path, and 2. Apache has the appropriate permissions to read that directory (it won't need to be able to write, just read). -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---