メンテナンス・トラブルシュート - PHP - PEAR - pear channel-update pear.php.net
- 1. 概要
- 2. 実行
1. 概要
さて、モジュールを検索してみようと思いましたらば・・・
> pear search pdo
WARNING: channel "pear.php.net" has updated its protocols, use "pear channel-update pear.php.net" to update
Retrieving data...0%
...Matched packages, channel pear.php.net:
=======================================
Package Stable/(Latest) Local
Date_Holidays_PHPdotNet 0.1.2 (alpha) Driver based class to calculate birthdays of some members of the PHP.net community.
PHPDoc 0.1.0 (beta) Tool to generate documentation from the source
PhpDocumentor 1.5.0a1 (alpha) The phpDocumentor package provides automatic documenting of php api directly from the source.
Structures_DataGrid_DataSource_PDO 0.2.0 (beta) DataSource driver using PHP Data Objects (PDO) and an SQL query
気になるのがこの
WARNING: channel "pear.php.net" has updated its protocols, use "pear channel-update pear.php.net" to update
の部分ですが。
調べるとチャンネルが古いのでアップデートしなさいってことらしい。
チャンネルというのは、モジュールの提供サイトのことか知らん。
2. 実行
仰せの通りに
> pear channel-update pear.php.net
Updating channel "pear.php.net"
Update of Channel "pear.php.net" succeeded
うまく更新されたようです。
再び同じ操作を実行しましたが警告は出力されなくなりました。
> pear search pdo
Retrieving data...0%
...Matched packages, channel pear.php.net:
=======================================
Package Stable/(Latest) Local
Date_Holidays_PHPdotNet 0.1.2 (alpha) Driver based class to calculate birthdays of some members of the PHP.net community.
PHPDoc 0.1.0 (beta) Tool to generate documentation from the source
PhpDocumentor 1.5.0a1 (alpha) The phpDocumentor package provides automatic documenting of php api directly from the source.
Structures_DataGrid_DataSource_PDO 0.2.0 (beta) DataSource driver using PHP Data Objects (PDO) and an SQL query
|
|