> Any ideas what would cause the system to stop working without errors when > using database sessions? >
I suggest you to start with a uWSGI config resembling mod_wsgi: --lazy --enable-threads Should be enough, and start with a single process (and a single thread). If it works (and it should), remove --lazy (in that way you will abuse fork() cow). And then remove --enable-threads (even if web2py uses threads in a couple of areas, so i would not remove it) -- Roberto De Ioris http://unbit.it

