Hello,
I have been modifying an application deployment to use Lighttpd + FastCGI 
instead of the built-in Rocket web server, and I have noticed that the app 
controllers now get an empty request vars object.

For example, previously this Form Button would call the 'assign_cmd' 
function with the provided vars:

*links=[lambda row: A(T('Assign'), _class='btn', 
_href=URL("command","assign_cmd",vars=dict(id=row.id, src='cmd')))*

Dumping the request.vars in assign_cmd() :
*<Storage {'src': 'cmd', 'id': '1'}>*

After switching to Lighttpd+FastCGI, request.vars in assign_cmd()  is empty:
*<Storage {}>*

Although, the request.env.query_string contents are valid:
*'query_string': 'id=2&src=cmd'*

Any suggestions to resolve this issue would be greatly appreciated, 
thanks, 
Mike

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to