Hi Axel,

How about temporarily modifying your dispatch.cgi (or startup.py file if 
that is what you have renamed it to) so that it gives an error message?

Add this to the top:

import cgitb; cgitb.enable()

so it looks like this:

----------------------------------------
#!/usr/bin/python

import cgitb; cgitb.enable()
from paste.deploy import loadapp
wsgi_app = loadapp('config:/path/development.ini')

if __name__ == '__main__':
    from flup.server.fcgi import WSGIServer
    WSGIServer(wsgi_app).run()
----------------------------------------

Then let us know the error and we can help. Remember to take that line 
out for production though!

HTH

James

> as mentioned above, the httpd-error log is empty. the access log shows
> only the get-request ("GET /startup.py/ HTTP/1.1" and "GET
> /startup.py/category HTTP/1.1"). pylons is in debug mode (unmodified
> development.ini with debug=true), but there is no traceback available.
> the one an only message i get is the error message.
> 
> perhaps i should concentrate my efforts on the CGIHandler or
> BaseHandler from wsgiref to redirect errors into a file...

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss
-~----------~----~----~----~------~----~------~--~---

Reply via email to