1

このようなコマンドでhomebrewを使用して、osxにphpをインストールしました。

$ brew install --without-apache --with-fpm --with-mysql php55

インストール後、次のメッセージが表示されました。

ログイン時に launchd で php55 を起動するには: ln -sfv /usr/local/opt/php55/*.plist ~/Library/LaunchAgents 次に php55 をロードするには: launchctl load ~/Library/LaunchAgents/homebrew.mxcl.php55.plist

しかし、最後の文はlaunchctl load ~/Library/LaunchAgents/homebrew-php.josegonzalez.php55.plist. この問題は既に github の問題ページにあります。

https://github.com/josegonzalez/homebrew-php/issues/663

テキストの小さな変更だと思ったので、プロジェクトをフォークして、git cloneローカルに複製しました。そして、このようにテキストが書かれている場所を探しました。

find . -type f -name "*.*" -print0 | xargs -0 grep "mxcl"
./Contributions/Using FPM.md:0. `brew update && brew pull https://github.com/mxcl/homebrew/pull/12093`
./Contributions/Using FPM.md:For PHP-FPM to work with OS X built-in Apache, you need to install mod_fastcgi. There is a formula for that at https://github.com/mxcl/homebrew/pull/12093 (hopefully, soon within Homebrew).
./Contributions/Using FPM.md:    brew pull https://github.com/mxcl/homebrew/pull/12093
./Formula/abstract-php.rb:      opoo "INTL is broken as of mxcl/homebrew#03ed757c, please install php#{php_version_path.to_s}-intl" unless build_intl?
./Formula/abstract-php.rb:      icu4c is broken as of mxcl/homebrew#03ed757c, so you will need to install intl as
./README.md:This repository contains **PHP-related** formulae for [Homebrew](https://github.com/mxcl/homebrew).

私が見る限り、説明テキストに関連するものは何もありません。このような問題を解決するための完全に間違った道ですか?

テキストを見つけるためのより効果的な方法があることを知りたいですか、それともコードを 1 行ずつ読んで場所を見つける必要がありますか?

4

0 に答える 0