Select > Upload FTP Solution for Eclipse - eclipse

in Netbeans, you can select a file on the project explorer and upload it directly to the ftp and it finds where to upload properly (amongst the folders and sub-folders,since the remote project is the copy of local project with the same folder, sub-folders and etc.) which provides quick solution when working on both local and remote.
I am wondering whether the same functionality is also available on Eclipse? I don't need anything complicated. This feature is what I only need. So if you know such plugin and how to use it, please enlighten me.
I am using Eclipse for PHP, my version of Eclipse is PDT

Aptana Studio 3 (standalone or plugin) has FTP download/upload functionality. And much more.

Eclipse has a Build in FTP. Go Windows->Open Perspective ->Other->Remote System Explorer.Create New Connection . Right Click on Explorer->New Connection ->FTP.
Note:(For Eclipse Helios and above)

Related

Whereabouts would I find the source code for the CVS team integration in eclipse?

I've looked at a lot of the git repositories, but I'm not sure which one to start with (and they're fairly large, so I want to avoid scanning 25 gig of data). Where would I find the code to handle CVS and Subversion integration?
You can browse all of the git repositories at http://git.eclipse.org/c/ . The one you want is http://git.eclipse.org/c/platform/eclipse.platform.team.git/ (cloning URLs are shown at the bottom).
You can install the core Eclipse source including the CVS code in to Eclipse from Help > Install New Software. Work with http://download.eclipse.org/eclipse/updates/4.3 for Eclipse 4.3 (Kepler) and choose Eclipse SDK. You can also download this as base Eclipse install (which is what I usually do).
Once you have this installed open Preferences > Plug-in Development and check Include all plug-ins from target in Java search. Once this is set the things like Navigate > Open Type and all the Java searches will include all the Eclipse source code.
Where the SVN code is depends on which SVN code you are using.
Update 2022: as illustrated by gitlab.eclipse.org/eclipsefdn/helpdesk issue 1100, and issue 915, everything is in the process to be transferred to GitHub.
The old (2014-2021) git.eclipse.org/c/platform/eclipse.platform.team.git/ would therefore be soon (Q2 2022) be found under https://github.com/eclipse-platform.
https://github.com/eclipse-platform/eclipse.platform.team

FTP Browser plugin for NetBeans?

For some time now I am looking for a good FTP plugin for NetBeans. I know it has some basic support but you can only use it with one project and involves downloading everything before you can freely edit/upload stuff..
I was wondering if there was like an FTP browser plugin for NetBeans like in Eclipse or Aptana. You just have the entire FTP server there and can select files when needed.
You could look at the FtpSiteDeployer plugin. This may meet your needs.

eclipse plugins for remote system

what is the plugin i would able to get from eclipse for "remote server system." I want to just open files from the remote server and continue my web project from a specific home folder.
I need to also able to have the input for mysql database so the eclipse would able to debug it as well.
Are there such plugins?
I have been looking for this for a long but I dont find any.
Many thanks
You may be looking for the Remote Systems Explorer, which is part of the target management project in Eclipse.

Source control for ftp project in eclipse

I have a remote project that is access over FTP. I have installed Remote System Explorer - plugin for eclipse and using that plugin, I was able to make a project in my eclipse.
When I make some changes I must login to my server and than using svn from command line to commit changes (and other stuff).
Is there any way (plugin for eclipse or something else) to make source control little more user friendly, so source control can be used from eclipse?
Thanks

How to install a custom plug-in in Eclipse Ganymede?

We have a custom plug-in. That is, the company where I'm working developed it in house.
I would like to install it as an available plug-in in Eclipse Ganymede. How do I do that?
From what I can figure out, the Eclipse software install only supports installation from Eclipse software update sites.
I went to Help -> Install New Software... -> Add -> Local...
to browse to a folder containing the plug-in. Although the dialog lets me add the directory as an update site, it doesn't work. It expects that directory to be a local Eclipse update site (I think). I get the error
No repository found at file:/G:/TOOLS/...
Next I just copied the plug-in into the plug-in directory under my Eclipse installation. That didn't work either. I also tried copying it into the dropins directory. No dice.
Can anyone enlighten me how to install a plug-in that's not on an "update" site?
Thanks in advance....
Usually an Eclipse plug-in packaged as zip file is install by extracting it into the Eclipse installation directory (or the plugins directory depending on how it is packaged, as it can also extract files in features directory).
Next restart Eclipse with the --clean option.
Did you check the Eclipse error log? Maybe the bundle is failing to deploy for some reason.
Otherwise, create a Feature and Update Site for your plugin as described here. An update site can either be a remote http server (SVN even), or a local directory. The nice thing is that you'll get versioning and the ability to upgrade and uninstall from inside Eclipse. It also makes things easier once your plugin grows into several plugins because they can be bundled together into a single, versioned feature.