show/hide this revision's text 2 added 241 characters in body

Both. Do some integration and unit testing on your development server (which, ideally, should be as similar to your live server as possible, but local), then do some acceptance testing in a QA environment, which should either be the same machine as your live server, or exactly the same setup (hardware, software, etc.) and should be remote.

When it comes to the database part of the question, you could either:

  • each have your own copy of the database OR
  • keep data/structure in sync by running a centralised script (maybe as part of your build)
show/hide this revision's text 1

Both. Do some integration and unit testing on your development server (which, ideally, should be as similar to your live server as possible, but local), then do some acceptance testing in a QA environment, which should either be the same machine as your live server, or exactly the same setup (hardware, software, etc.) and should be remote.