Posts Tagged ‘ Subclipse

eclipse平台扩展点清单

eclipse 是个功能强大的开发工具,可以实现你想要的任何功能, 只要安装 扩展就可以了,

例如我要开发php  需要PHPeclipse ,需要svn 需要svn插件 Subclipse ,下面就以PHPeclipse为例 讲一下安装过程

比较简单的办法下载PHPEclipse ,解压到当前目录
将目录下面的plugins, features  分别复制到 eclipse 目录下的plugins, features !

还有一种方法在eclipse中加入PHPeclipse的update site

如果你使用的是eclipse3.2,升级网址就是:http://update.phpeclipse.net/update/stable/1.1.x

如果是eclipse3.3/3.4,升级网址就是:http://update.phpeclipse.net/update/stable/1.2.x

具体操作:打开eclipse,在菜单工具栏选择:Help-> Software Updates -> Find and Install

1

接下来选择:Search for new features to install,点击next,下来点击:new  Remote Site

Name: PHPEclipse 1.2.x

URL:http://update.phpeclipse.net/update/stable/1.2.x

2

点击ok。

然后在页面中选择PHPEclipse1.2.x,点击finish。

等安装完毕后,你就可以创建你的php工程了。

3

4

建好PHP工程后

下面将DBG php调试模块加入到eclipse当中:

    下载地址:http://superb-west.dl.sourceforge.net/sourceforge/dbg2/dbg-2.15.5-win32.zip

     解压dbg-2.15.5-win32.zip到临时目录后,更名x86子目录下的php_dbg.dll-5.x.x为php_dbg.dll, 拷贝至php安装目录下的ext扩展所在目录,然后修改php.ini, 加入扩展项, 并且新增debug配置段:

[debugger]debugger.enabled = truedebugger.profiler_enabled = truedebugger.JIT_host = clienthostdebugger.JIT_port = 7869

1

 

搜了一篇eclipse平台扩展点清单,可以参考一下,如果有需要可以添加,方法类似!

阅读全文