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
return app(environ, start_response)
##
Then everything started working fine, until I accessed the Admin url.
I get an error ticket every time I access the admin URL. And If I
click the ticket url, I get another ticket and so on, recursively.
On Jul 27, 3:05 pm, Massimo Di Pierro <[email protected]>
wrote:
> 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 <[email protected]> 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."