Thanks for your reply. If I'm adding my app to the raw args, my other code will not work anymore:
if len(request.args) == 2: TypeError: object of type 'NoneType' has no len() On Feb 1, 6:57 pm, Bruno Rocha <[email protected]> wrote: > in your routes.py > > #specify a list of apps that bypass args-checking and use request.raw_args > # > #routes_apps_raw=['myapp'] > #routes_apps_raw=['myapp', 'myotherapp'] > > On Wed, Feb 1, 2012 at 3:52 PM, Dan <[email protected]> wrote: > > Hi, > > > I'm using the lates Version of Web2py and getting a invalid request if > > I'm using any special chars like %21 (!) or umlauts. Web2py is running > > with the fcgihandler and Lighttpd. All special chars are encoded by > > using urllib.quote(). > > > Please help! > > > Thanks a lot. > > -- > > Bruno Rocha > [http://rochacbruno.com.br]

