views:

46

answers:

1

We are two friends trying to develop an application on local network using symfony + netbeans + wamp.

I have shared wamp directory and put my wamp server online. Now my friend can work on project that is placed in my www directory but he can not access phpMyAdmin and when he opens 'run symfony commands' window by right clicking on project and then choosing 'symfony>run command', sm window tries to load symfony command but fails to load command and sm window remains empty.

How can we fix this problem? What is the proper way of working on a project on local area network?

+1  A: 

To me, a proper way of working on a project on a LAN would be to use two separate linux (could be installed on virtual machines if your reluctant to install it on real ones.) installations with two LAMP servers, and using a SCM tool like git, mercurial or svn to update code. Like this, you would not risk editing the same file, you would have a cool command line interface, and you would not have to deal with windows permissions.

greg0ire