Everything installed under administrator account.

After modifying config to load mod_wsgi, apache wont start - 'the
requested operation has failed'

nothing in the error log

(downloaded mod_wsgi from 
http://adal.chiriliuc.com/mod_wsgi/revision_878_2.0/mod_wsgi_py25_apache22/)

Have searched whole system for other python25.dll to make sure there
wasnt a conflict - nothing found.

--- changes made to config ---

### added this after other modules ###

LoadModule wsgi_module modules/mod_wsgi.so

### added this below other <directory> code ###

WSGIScriptAlias /wsgi “C:/wsgi/handler.py”

<Directory “C:/wsgi”>
        AllowOverride None
        Options None
        Order deny,allow
        Allow from all
</Directory>


--- my c:\wsgi\handler.py ---

def application(environ, start_response):
    status = '200 OK'
    output = 'Hello World!'

    response_headers = [('Content-type', 'text/plain'),
                        ('Content-Length', str(len(output)))]
    start_response(status, response_headers)

    return [output]




Any ideas?


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

Reply via email to