Reputation: 7902
I have a PHP project sat on a remote server.
Can I create a new project in Eclipse by downloading the sources from the remote server.
If so, some instructions on how to do so please.
Upvotes: 2
Views: 18393
Reputation: 11
It depends on the type of source control software. You can install git, svn or cvs modules. The steps to take are:
Upvotes: 1
Reputation: 1330
You can do the same, by fooling the local system.
e.g.
\\server\share (shared folder)
http://swatantra.info/share (Web Share)
ftp://ftp.swatantra.info (FTP site)
Upvotes: 0
Reputation: 3701
There is no direct way to do that, at least with standard install of Eclipse PHP
You would usually use "File > Import..." or "File > New Project > PHP Project..." menus for that, but I have never seen this option anywhere in Eclipse.
So this is one of three solutions :
Upvotes: 1
Reputation: 21381
Not that I am aware of. Even when you remote debug you would still need a copy of the sources locally.
Upvotes: 0