Can someone help me with a big question? When doing web-based application development, why does everyone insist upon creating local versions of the server environment for development? Why not just develop on a hosted server? It seems like a serious pain to try to recreate (and keep synchronized) the entire server environment locally - especially on a variety of boxes and platforms that don't match the hosted environment anyway. It seems much simpler to create a testing environment remotely and work with files in that environment via FTP.
And yet all the SVN services and tools I've found are designed to pull copies onto a given local machine, treating the remote server as a deployment.
I want to set up a remote development environment - so developers can check out their own version of the files they need into their personal file tree on the server. When they're done testing in their own little environment they can commit via SVN to a single staging environment, test again there, and then copy the files from development to production. Where can I find the tool to help me set up and manage something like this?