> > I have a site with a URL like this: www.mydomain/init/foldername/viewname >
I'm not sure what's going on here, but just for clarification, note that web2py does not interpret the last two items in the above URL as a view folder and view name. Rather, those are seen as a controller name and a function. By default, views are named after their functions and put in folders named after their controllers (though that can be overridden). The point is, having a view folder and a view without the corresponding controller and function won't work (though having a controller and function without the corresponding view will work if generic views are enabled). Anthony --

