[web2py] Re: still stuck with services and authentication

2010-10-28 Thread Niphlod
not that I don't trust webfaction setup scripts, but there are a few shortcomings in passing along the auth headers fcgi to say one needs an extra parameter. I forgot that maybe it will be easier to set up a page def test(): heads = [("- %s: %s" %(k,v)) for k,v in request.env.iterit

[web2py] Re: still stuck with services and authentication

2010-10-28 Thread Niphlod
not that I don't trust webfaction setup scripts, but there are a few shortcomings in passing along the auth headers fcgi to say one needs an extra parameter. Niphlod On Oct 29, 1:00 am, Niphlod wrote: > how are you passing along requests from apache to web2py ? > can you monitor if web2py a

[web2py] Re: still stuck with services and authentication

2010-10-28 Thread Niphlod
how are you passing along requests from apache to web2py ? can you monitor if web2py actually receive all the headers you send ? something like def test(): with os.open("path/to/file", 'wb') as g: for k,v in request.env.iteritems(): if k.startswith('http_'):