EmmyS
EmmyS

Reputation: 12138

Is it possible to work on remote files in Eclipse?

I'm looking into using Eclipse as a dev environment for PHP projects, but it's pretty huge and I'm not sure where to look for answers. I want to be able to work on remote files from within the client - i.e., rather than using an FTP client to download copies from our remote development server, working on them locally, and then having to upload them to test, I want to be able to work directly on the remote files. I know many development environments allow this - my colleagues who work on Macs use Coda, which allows them to define sites and access all files via an explorer tree. I'm currently running Bluefish on Ubuntu, and it also allows this.

I've downloaded and installed Helios, but can't seem to find an obvious menu entry for handling remote files. Can anyone point me in the right direction?

Edited to add: we don't use version control at this point, so I'm not looking for any kind of Subversion tie-in.

Upvotes: 11

Views: 15121

Answers (6)

Michael Sebastian
Michael Sebastian

Reputation: 329

Install eclipse plugin Remote System Explorer End-User Runtime. See video at How to Edit codes and files remotely with Eclipse.

Also, check out how to configure the remote connection: Using Remote Connections.

Upvotes: 0

zakmck
zakmck

Reputation: 3004

This is more general than Eclipse: http://curlftpfs.sourceforge.net. I usually use the SSH/SFTP version (safer): http://fuse.sourceforge.net/sshfs.html

Both are based on FUSE (http://fuse.sourceforge.net/)

Upvotes: 0

Tom Crockett
Tom Crockett

Reputation: 31579

The RSE (Remote System Explorer) may be what you're looking for. It's an implementation of the Eclipse File System framework which allows resources in your workspace to be backed in reality by remote resources.

Upvotes: 9

karlphillip
karlphillip

Reputation: 93410

I usually develop using remote Eclipse. Use ssh -Y user@server to login and try executing eclipse on that shell, it should open on your computer if you have X properly configured.

Of course, this Eclipse instance will have access to the remote server files.

Upvotes: 0

Aidanc
Aidanc

Reputation: 7011

Perhaps this will be of some help

http://www.jcraft.com/eclipse-sftp/

I've never used it myself but it seems to do what you're looking for syncing and editing files over SFTP.

Upvotes: 0

vikmalhotra
vikmalhotra

Reputation: 10071

Since you are working on Ubuntu, you can have a look over here

Upvotes: 0

Related Questions