[modwsgi] mod_wsqi + apache 2.2 + python 2.7.1 + Win 7: getting DLL load failed

2011-04-30 Thread Alejandro
Hi, I have the following in httpd.conf: LoadModule wsgi_module modules/mod_wsgi.so WSGIScriptAlias /wsgi C:/temp/wsgi_test.py Directory C:/temp AllowOverride None Options None Order deny,allow Allow from all /Directory Which with a wsgi_test.py like: def application(environ, start_response):

Re: [modwsgi] mod_wsqi + apache 2.2 + python 2.7.1 + Win 7: getting DLL load failed

2011-04-30 Thread Graham Dumpleton
On 1 May 2011 03:38, Alejandro afrit...@gmail.com wrote: Hi, I have the following in httpd.conf: LoadModule wsgi_module modules/mod_wsgi.so WSGIScriptAlias /wsgi C:/temp/wsgi_test.py Directory C:/temp AllowOverride None Options None Order deny,allow Allow from all /Directory Which

[modwsgi] Re: mod_wsqi + apache 2.2 + python 2.7.1 + Win 7: getting DLL load failed

2011-04-30 Thread Alejandro
Thanks Graham for the hint. I found a pycrypto compiled with MinGW and it worked. But I have similar issues with other modules so the problem was still there. Googling i found this post http://psycopg.lighthouseapp.com/projects/62710/tickets/20#ticket-20-6 which explains quite clearly and deeply

Re: [modwsgi] Re: mod_wsqi + apache 2.2 + python 2.7.1 + Win 7: getting DLL load failed

2011-04-30 Thread Graham Dumpleton
On 1 May 2011 15:33, Alejandro afrit...@gmail.com wrote: Thanks Graham for the hint. I found a pycrypto compiled with MinGW and it worked. But I have similar issues with other modules so the problem was still there. Googling i found this post