user411103
user411103

Reputation:

Deployment using Eclipse PHP

I have a small PHP project with a MySQL database, that I have been programming on notepad and uploading directly to my remote server using FTP.

Now I have installed ECLIPSE PHP and I would like to know if is there a way to sycronize or deploy my local project on the remote server (without manual copy/paste using FTP), and connect it to the remote MySQL to test it. I cannot find the option.

Thanks a lot

Upvotes: 1

Views: 3015

Answers (2)

Hannes
Hannes

Reputation: 8237

Well,

when you do it, why not do it right? ;) There are a ton of Plugins for Eclipse, for example you could use SVN ( http://www.eclipse.org/subversive/ ) for releasing and Version controlling or GIT ( http://www.eclipse.org/egit/ ).

If its all about speed (and you work under linux, which I hope you do) why not work directly via SSHFS ( http://en.wikipedia.org/wiki/SSHFS )

Just some thoughts.

Upvotes: 0

Shikiryu
Shikiryu

Reputation: 10219

I don't think this option is in Eclipse by default but you can use a plugin.

From the Eclipse MarketPlace (because they do have an appstore too :D), I found projx-transfer that seems to be perfect for you.

Upvotes: 1

Related Questions