On 2 October 2012 02:20, John Harris <[email protected]> wrote: > I am new to mod_wsgi an am having some problems starting apache back up > after installing it. My setup is: > > Python 2.7 (32bit) (installed for everyone as per advice) > mod_wsgi 2.2 (32bit) > apache 2.2 (32bit) > I am intending to use an environment created with virtualenv (Python 2.7 - > 32bit) > > I've changed my httpd.conf to load mod_wsgi and I've put the file in the > modules folder. The error (paraphrased) I'm receiving is: Cannot load > (mod_wsgi)...The specified procedure could not be found. > > I have followed the various install guides but cannot find a good > step-by-step for my situation (Windows/32bit everything/with virtualenv). If > anyone can help out that would be great.
Where did you get the mod_wsgi.so file from? Are you really using mod_wsgi 2.2? That is a really old version. What is the exact LoadModule line you are using? I can't remember the wording of the message but if you do not use 'wsgi_module' as first argument in the LoadModule line and incorrectly use 'mod_wsgi', it will not be able to load the module properly and produce a similar message. Graham -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
