ネットランダム改変

はてなダイアリーからはてなブログにインポート。

Pearのインストール

PHPクイックスタート、チュートリアルなど試した人ならPHPソースが出来上がっていることでしょう。hello Worldでもかまわないと思います。
それらのPHPソースから仕様書をおこしましょう。

※仕様書をおこせるようになれば、その仕様書をベースに、新たなサイト、アプリ、サービスなどを書き起こすことで、プログラミングライフが快適になることでしょう。

phpDocumentorでやるよ。そのためにはまずはPEARのインストール。

Pearのインストール状況確認 - のぶメモ

pear

入ってなかった。。
じゃあインストール。

sudo apt-get install php-pear

バージョンの確認と。

ubuntu-user@ubuntu-machine:~$ pear version
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/mcrypt.ini on line 1 in Unknown on line 0
PEAR Version: 1.9.0
PHP Version: 5.3.2-1ubuntu4.2
Zend Engine Version: 2.3.0
Running on: Linux ubuntu-machine 2.6.32-24-generic #41-Ubuntu SMP Thu Aug 19 01:12:52 UTC 2010 i686
ubuntu-user@ubuntu-machine:~$ 

インストール場所は?

ubuntu-user@ubuntu-machine:~$ pear config-get php_dir
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/mcrypt.ini on line 1 in Unknown on line 0
/usr/share/php

あれ?エラー?

Ubuntu日本語フォーラム / アップグレード後、PHPが作動しません。
http://blog.shiten.info/2010/06/php5-mcrypt-%E3%81%A7php%E3%81%AB%E3%82%A8%E3%83%A9%E3%83%BC%E3%81%8C%E8%A1%A8%E7%A4%BA%E3%81%95%E3%82%8C%E3%82%8B.html

1行目の'#'を';'に変えてみた。

sudo vi /etc/php5/cli/conf.d/mcrypt.ini

エラーなくなったよ!

ubuntu-user@ubuntu-machine:/usr/share/php5$ pear config-get php_dir
/usr/share/php

PEARはできたんじゃね

ubuntu-user@ubuntu-machine:/usr/share/php5$ pear config-show
Configuration (channel pear.php.net):
=====================================
Auto-discover new Channels     auto_discover    <not set>
Default Channel                default_channel  pear.php.net
HTTP Proxy Server Address      http_proxy       <not set>
PEAR server [DEPRECATED]       master_server    pear.php.net
Default Channel Mirror         preferred_mirror pear.php.net
Remote Configuration File      remote_config    <not set>
PEAR executables directory     bin_dir          /usr/bin
PEAR documentation directory   doc_dir          /usr/share/php/doc
PHP extension directory        ext_dir          /usr/lib/php5/20090626+lfs
PEAR directory                 php_dir          /usr/share/php
PEAR Installer cache directory cache_dir        /tmp/pear/cache
PEAR configuration file        cfg_dir          /usr/share/php/cfg
directory
PEAR data directory            data_dir         /usr/share/php/data
PEAR Installer download        download_dir     /build/buildd/php5-5.3.2/pear-build-download
directory
PHP CLI/CGI binary             php_bin          /usr/bin/php
php.ini location               php_ini          <not set>
--program-prefix passed to     php_prefix       <not set>
PHP's ./configure
--program-suffix passed to     php_suffix       <not set>
PHP's ./configure
PEAR Installer temp directory  temp_dir         /tmp/pear/temp
PEAR test directory            test_dir         /usr/share/php/test
PEAR www files directory       www_dir          /usr/share/php/htdocs
Cache TimeToLive               cache_ttl        3600
Preferred Package State        preferred_state  stable
Unix file mask                 umask            22
Debug Log Level                verbose          1
PEAR password (for             password         <not set>
maintainers)
Signature Handling Program     sig_bin          /usr/bin/gpg
Signature Key Directory        sig_keydir       /etc/pear/pearkeys
Signature Key Id               sig_keyid        <not set>
Package Signature Type         sig_type         gpg
PEAR username (for             username         <not set>
maintainers)
User Configuration File        Filename         /home/ubuntu-user/.pearrc
System Configuration File      Filename         /etc/pear/pear.conf
ubuntu-user@ubuntu-machine:/usr/share/php5$ 

環境

Virtualbox 3.2.6
Ubuntu 10.04
NetBeans 6.9.1
PHP 5.3.2-1ubuntu4.2