せかいや

いまいるここを、おもしろく http://sekai-in-the-box.appspot.com/

【PHP】インストールで嵌ったところ

諸事情により、PHPの勉強が必要になったのでとりあえずインストール。
嵌ったところのメモ。

#インストールがここまでややこしい言語初めてかも・・・><

Apache上で動かす場合はVC6 をインストールする

If you are using PHP with Apache 1 or Apache2 from apache.org (not recommended) you need to use the older VC6 versions of PHP compiled with the legacy Visual Studio 6 compiler.

http://windows.php.net/download

■Non Thread Safeではなく、Thread Safe をインストールする

■PHP5.2のVC6 x86 Thread Safe はInstallerがついているけど、設定ファイル修正は自分でする必要がある

httpd.conf

#BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
PHPIniDir ""
LoadModule php5_module "php5apache2_2.dll"
#END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL

#BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
PHPIniDir "c:/php"
LoadModule php5_module "c:/php/php5apache2_2.dll"
#END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL

php.ini
C:\Windows に自分で設定