0

通过 PEAR 安装 PHPUnit,phpunit 的安装说明正在运行:

pear channel-discover pear.phpunit.de
pear install phpunit/PHPUnit

但失败并出现此错误:

注意: fwrite(): send of 105 bytes failed with errno=10053 已建立的连接被主机中的软件中止。在 PEAR\Downloader.php 的第 1664 行

注意: fwrite(): send of 105 bytes failed with errno=10053 已建立的连接被主机中的软件中止。在 C:\xampp\php\pear\PEAR\Downloader.php 第 1664 行

通过 http:// 发现频道 pear.phpunit.de 失败并显示消息:

频道添加:无法打开“ http://pear.phpunit.de/channel.xml ”(文件http://pear.phpunit.de:80/channel.xml无效(重定向但没有位置))

尝试通过 https:// 发现频道 pear.phpunit.de

频道“pear.phpunit.de”的发现失败(频道添加:无法打开“ https://pear.phpunit.de/channel.xml ”(与“pear.phpunit.de:443”的连接失败:

已建立的连接被主机中的软件中止。))

你怎么解决?

4

2 回答 2

0
wget https://phar.phpunit.de/phpunit.phar
chmod +x phpunit.phar
mv phpunit.phar /usr/local/bin/phpunit
于 2015-08-13T11:39:21.870 回答
-1

你设置了自动发现吗?我做了以下操作,它在 Ubuntu Linux 和 Windows 7 上正常工作。

Ubuntu:

sudo pear upgrade PEAR
sudo pear config-set auto_discover 1
sudo pear install pear.phpunit.de/PHPUnit

视窗:

pear upgrade PEAR
pear config-set auto_discover 1
pear install pear.phpunit.de/PHPUnit
于 2013-03-11T21:46:40.407 回答