[web2py] Re: Web2py anyserver.py with FAPWS

2011-07-28 Thread Massimo Di Pierro
Try this again. At the second ticket, do not click on the link. Locate the admin/errors/ticket# file and mail it to me. On Jul 28, 12:40 am, tejus pratap wrote: > I replaced evwsgi.start(*address[0])  with > evwsgi.start(address[0],str(address[1])), then when I tried to run > web2py I got the err

[web2py] Re: Web2py anyserver.py with FAPWS

2011-07-27 Thread tejus pratap
I replaced evwsgi.start(*address[0]) with evwsgi.start(address[0],str(address[1])), then when I tried to run web2py I got the error "too many recursions" so I removed the following function from the fapws static method ## def app(environ, start_response): environ['wsgi.multiprocess'] = False

[web2py] Re: Web2py anyserver.py with FAPWS

2011-07-27 Thread tejus pratap
I changed evwsgi.start(*address[0]) with evwsgi.start(address[0],str(address[1])), then I got another error that says "too much recursion", so I removed the following function from the fapws static metod: ## def app(environ, start_response): environ['wsgi.multiprocess'] = False ret

[web2py] Re: Web2py anyserver.py with FAPWS

2011-07-27 Thread pbreit
I see Fapws making some bold claims on performance but I don't really understand what it does. Is it a web server like Apache and Nginx?

[web2py] Re: Web2py anyserver.py with FAPWS

2011-07-27 Thread Massimo Di Pierro
Try replace evwsgi.start(*address[0]) with evwsgi.start(address[0],str(address[1])) in anyserver.py On Jul 27, 3:25 am, tejus pratap wrote: > HI, > I tried to use anyserver.py with FAPWS, but I got an error -  "Failed > to parse the start parameters. Must be 2 strings."