I was reading this and I read:

"web2py does not work well on multiple application environment so you
have to use it as the only WSGI application of the uWSGI server. "

I am not sure I understand the comment.

I think this originates from a misunderstanding and, in fact, the
problem is in the script that follows that they use as example since
it does chdir. The script instead should be

   import os, sys
   os.environ['web2py_path'] = "full_path_of_your_web2py_app"
   sys.path.append(os.environ['web2py_path'])
   import gluon.main, gluon.settings
   application = gluon.main.wsgibase

this should work and will not do chdir.

Somebody should tell them but I did not find contact info on the page.

-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.

Reply via email to