- ベストアンサー
PHP5のインストール その3
http://allabout.co.jp/career/database/closeup/CU20040928A/index.htm?FM=cukj&GS=databaseにて、PHP5をインストールするため、手順どおりにやりました。 すべての設定を終えて、http://localhost/test.phpまたは、http://127.0.0.1/test.phpと入力してApacheとPHPが正常に起動しているかどうか確認したいのですが、URLを入力しても、画面上に<? phpinfo() ?> と表示されるだけです。どこの手順で、どこが間違っているかどうか、自分でもわかりません。 解決方法を知っている方、よろしくお願いします。
- みんなの回答 (3)
- 専門家の回答
質問者が選んだベストアンサー
ApacheってApache1ですか?Apache2ですか? 質問URLの内容はApache1の設定です。 Apache2ですと若干違いますので、Apacheのバージョンも確認して下さい。 (バージョン違う設定するとエラーになったかも) Apache1の最新版だと、画像のようにRestartショートカットがありません。 ファイル名を指定して実行から「services.msc」を実行して Apacheを再起動して下さい。
その他の回答 (2)
- copymaster
- ベストアンサー率81% (83/102)
コードが違います。 <? phpinfo() ?> ではなく、 <?php phpinfo(); ?> と書きます。 ショートタグの設定をすれば、<? ?> でも動きますが、 (php.ini で short_open_tag = On) 個人的に好きでないので(←おいおい!) 普通は、<?php ?> と書いてください。
お礼
コードを入れ替えても解決しませんでした。 一体どうしたらできるんでしょうか。
- めとろいと(@naktak)
- ベストアンサー率36% (785/2139)
httpd.confに AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps この2行を追加しましたか? これがないとPHPファイルという事を認識してくれません。 これら設定を終えた後、Apacheを再起動しましたか? 再起動しないと設定が有効になりません。 質問にあるURLで実績はありますので、 全く手順通りに進んでいれば正常にPHPは動作します。
補足
>httpd.confに >AddType application/x-httpd-php .php >AddType application/x-httpd-php-source .phps >この2行を追加しましたか? httpd.confの内容です。 AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phpsのあたりを書きます。 # AddEncoding allows you to have certain browsers uncompress # information on the fly. Note: Not all browsers support this. # Despite the name similarity, the following Add* directives have nothing # to do with the FancyIndexing customization directives above. # AddEncoding x-compress .Z AddEncoding x-gzip .gz .tgz # # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # #AddType application/x-compress .Z #AddType application/x-gzip .gz .tgz AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps 何か問題があるのでしょうか? よろしくお願いします。
お礼
Apache2でした。 ありがとうございました。