views:

51

answers:

1

Is there a good option for having more than one person developing a Wordpress application with a testing site.

The biggest hurdle that I have encountered are path issues when developing locally and integrating to a testing environment.

Does anyone have a good process for maintaining developer environment(s), keeping working content and links, and the code is maintained in source control?

To clarify, I would like to develop locally, and have a testing environment, and avoid path issues. I am open to other solutions, or ideas.

A: 

May be I don't get the problem in a whole, but what is the problem of putting the whole source code of WordPress into version control, check it out to a single test server for tests?

If you have problems with site names, force your developers to check out to their machines and store it under www.yourwpdomain.local (mind the .local part). They can use DNS or simple hosts file to resolve .local domain address into 127.0.0.1. Apache setup is pretty straightforward.

FractalizeR