[EMAIL PROTECTED] wrote:
> Hi.. thanks for your replies guys.
>
> You're probably right... I'm running mod_python from the Ubuntu dapper
> repositories which currently has version 3.1.4. Unfortunately the Edgy
> package (which is 3.2.8) depends on a newer version of libc6 which
> means that I really don't want to upgrade the package.
>
> So if anyone know about a mod-python 3.2.8 package that would work
> properly for Ubuntu Dapper I'd surely appreciate it.

You might be able to fudge it to get around the mod_python problem with
that version. Use the PythonImport directive to force import the
modules at Apache child process startup.

  PythonImport django.contrib.auth
  etc ...

It just so happens that the PythonImport directive in that version
underneath does the equivalent of using the "import" statement, thus
bypassing the flawed behaviour of the mod_python.apache.import_module()
function that the Python*Handler directives use.

The PythonImport directive must be at global scope within Apache
configuration.

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to