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
        return app(environ, start_response)
##

Then voila, the app started working fine, until I accessed the Admin
url. If I try to access the admin pages I recursively get a new Ticket
url (url) and web2py is not showing any admin pages..




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."

Reply via email to