windos下安装PEAR 注意
1、在这里下载PEAR
http://pear.php.net/go-pear.phar
在页面右键另存为 go-pear.phar 到PHP的根目录,并去目录查看是否保存为了go-pear.phar(有时会保存为go-pear.phar.txt)
2、服务器开启,PHP跑起来
3、在PHP根目录下执行
php go-pear.phar
安装过程的选项参考http://www.phpddt.com/php/windows-pear.html
提示 Thanks for using go-pear! 代表安装成功了 4、在PHP根目录/pear 输入命名行
pear
会有相关的帮助选项代表pear安装好了
返回PHP根目录,双击安装过程中产生的新文件PEAR_ENV.reg,之后,在PHP根目录执行
pear
也会有相关的帮助
注意:此时只能在根目录执行PEAR,下载的应用扩展会自动写到 PHP根目录/pear
5、用PEAR安装扩展,并引入到项目中
参考http://www.jb51.net/article/17508.htm
注意:
PEAR安装后会自动往 php.ini写入
;***** Added by go-pear
include_path="E:\WAPM\php54\pear"
;*****
所以,安装PEAR后,第一次调试项目前要重启服务 其他参考资料:
http://blog.csdn.net/ruby97/article/details/8868197
http://www.cnblogs.com/Excellent/archive/2011/11/22/2258304.html
windos下安装PEAR 注意的更多相关文章
- Mac下安装pear库+phpDocumentor
		1. 首先安装pear: curl -o go-pear.php https://pear.php.net/go-pear.phar 看见这个就安装OK: % Total % Received % X ... 
- 在WINDOWS下安装PEAR
		一.从官网下载go-pear.phar 文件,地址http://pear.php.net/go-pear.phar 将下载好的文件go-pear.phar 放到PHP安装目录下,dos 命令下进入PH ... 
- windos下安装django
		一:pip install Django 安装完以后,运行python manager.py runserver 0.0.0.0:8000报错: 1):没有安装Mysql-python ... 
- windos下安装mongodb
		一.下载 1. www.mongodb.com/download-center#community2.根据电脑系统下载对应的版本,3.选择zip(解压版本)/msi安装版本4.本文是用的msi(安装版 ... 
- windos下安装多个mysql服务
		最近需要使用Mysql制造大量数据,需要多个Mysql服务器.一开始的解决方案是使用多个windows机器.实体机不够,则用虚拟机来搞.但,,,,安装多个虚拟机…….好吧, 在网上查了下,有使用单个机 ... 
- Mac下安装PEAR
		The following instructions install PEAR and PECL on Mac OS X under/usr/local/. PECL is bundled with ... 
- windos下安装pgAdmin
		1.进入pgAdmin官方网址 https://www.pgadmin.org/download/ 2.下载安装包 版本下载地址:https://www.pgadmin.org/download/pg ... 
- 在Windows 下为PHP5.4安装PEAR, PHPUnit , phpDoc2
		1.安装PEAR 官方网站: http://pear.php.net/ PHP 5.4 的 Windows 包中没有自带 PEAR,下载 http://pear.php.net/go-pear ... 
- xpython在Windos下的安装及简单的文本打开、保存
		前几天写自动化部署脚本,用的是paramiko和shell相结合,paramiko可是实现ssh登录,文件及文件夹的上传下载,这些功能,然后一直想自己写个东西出来,于是就想把这些功能我把他放到图形化界 ... 
随机推荐
- 专访CEO何朝曦:深信服高速成长的秘诀
			在深信服公司深圳总部的办公室里,要迅速找到几位高管的工位远远不如找一位女员工的座位那样容易. 深信服CEO何朝曦先生 公司里虽然女孩很少,但几乎每位女员工的工位上都有一盆绿植.相比之下,从公司CEO何 ... 
- req.body取不到值的问题;
			随着express升级,bodyParser从express中被分离了出来,因此,在使用express新版本的时候,需要npm install body-parser 来安装bodyParser. 在 ... 
- 再学习sqlhelper
			在机房收费重构系统的时候,第一次学习sqlhelper.当时感觉比较简单,没有写博客总结,现在又经过了图书馆的学习,感觉还是有必要写一写的. SqlHelper是一个基于.NETFramework的数 ... 
- CF#52 C  Circular RMQ  (线段树区间更新)
			Description You are given circular array a0, a1, ..., an - 1. There are two types of operations with ... 
- Mysql++详解
			MySQL++数据库操作(1).mysqlpp::Connection con(false); //定义了mysql连接对象: (2).con.set_option(new mysqlpp::SetC ... 
- SQL Server索引进阶:第七级,过滤的索引
			原文地址: Stairway to SQL Server Indexes: Level 7,Filtered Indexes 本文是SQL Server索引进阶系列(Stairway to SQL S ... 
- HTML5API___manifest
			离线缓存 manifest 在html标签里面增加个属性 mainfest 就可以告诉浏览器缓存文件在哪里. <html manifest='show.manifest' xmlns=" ... 
- TabelView的多选模式
			@interface ViewController ()<UITableViewDelegate,UITableViewDataSource> @property(nonatomic,st ... 
- MySQL 开放局域网
			局域网连接mysql报错: ERROR 1130: Host '192.168.0.220' is not allowed to connect to this MySQL server 解决方法: ... 
- C# 查找指定名称的控件(转)
			请问我知道控件的名称如何得到这个控件对象呢? var button = this.FindName("button1") as Button; Button button = th ... 
