[web2py] Invalid request if the URL contains a special char or umlaut

2012-02-01 Thread Dan
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.


Re: [web2py] Invalid request if the URL contains a special char or umlaut

2012-02-01 Thread Bruno Rocha
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 kor...@ironshark.de 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]


Re: [web2py] Invalid request if the URL contains a special char or umlaut

2012-02-01 Thread Jonathan Lundell
On Feb 1, 2012, at 9:52 AM, Dan wrote:

 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().

Post an example, please, and the full text of the invalid-request message.