Graham
> --
> You received this message because you are subscribed to the Google Groups "modwsgi" group.
> To post to this group, send email to mod...@googlegroups.com.
> To unsubscribe from this group, send email to modwsgi+u...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
>
the working installation ships with a ton of DLLs (I assume visual c++ runtimes) both in mod_wsgi's and python2.6's paths. If I remove those, forcing use of system DLLs I presume, the installation behaves like the non-working installation.
Graham Dumpleton <graham.d...@gmail.com> wrote:
>Have you tried with a WSGI hello world program rather than with Django
>to work out whether a mod_wsgi issues or an issue in Django somehow?
>
--
Sent from my Android phone with K-9 Mail. Please excuse my brevity.
WSGIApplicationGroup %{GLOBAL}
It is a magic incantation which gets around problems in third party C
extension modules for Python which are written so as to only work in
main interpreter. If not run in main interpreter they will dead lock
the request thread.
Graham