**********************************************
** 文章名称:PHP+Eclipse+PHPEclipse+XAMPP配置
** 版权信息:可以任意转载,但要注明出处及作者信息
** 作 者: 隗公万
** 时 间: 2011.01.26
** 联系方式:weigongwan@gmail.com
***********************************************/
一、下载文件
1、Eclipse可以下载Eclipse或者直接下载MyEclipse。我这里是直接找的MyEclipse 6.0下载地址为。
2、PHPEclipse插件直接到 下载最新的二进制包即可。
3、XAMPP集成包同样直接到 下载最新的二进制文件即可。
二、安装程序
1、MyEclipse6.0就不多说怎么安装了,按照提示一步一步操作就成。
2、装好后,把下载好的PHPEclipse插件解压到MyEclipse目录下的Eclipse目录下面,覆盖原来的features和plugins两个目录。
3、XAMPP直接运行xampp-win32-1.7.3.exe程序,直接安装在C:\xampp目录下即可。出现的配置直接一路回车即可。
三、配置环境
1、如果需要修改工作目录的话请打开C:\xampp\apache\conf\httpd.conf直接将DocumentRoot "C:/xampp/htdocs"改成自己需要的目录如:DocumentRoot "D:/mywork/workspace"。这时需要注意一点,如果不修改随后的
那么将出现访问权限的错误,具体错误内容如下:
Access forbidden!
You don’t have permission to access the requested directory. There is
either no index document or the directory is read-protected.
If you think this is a server error, please contact the webmaster.
Error 403
2、XAMPP其实没有什么需要修改的配置,直接将C:\xampp\phpMyAdmin\config.inc.php中的权限类型修改下即可:
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'http'; // 原http为config
$cfg['Servers'][$i]['user'] = 'root';
|
修改后,phpmyadmin就可以通过验证用户名密码的方式访问了。
阅读(5988) | 评论(3) | 转发(0) |