1

Macにxamppがインストールされています。これで仮想ホストをセットアップしました これは httpd-vhosts.conf にあります

    <VirtualHost *:80>
        DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs"
        ServerName localhost
    </VirtualHost>

    <VirtualHost *:80>
        DocumentRoot "/Users/username/Dropbox/folder/cms backup/test"
        ServerName cms.local
        ServerAlias cms.local
        <Directory "/Users/username/Dropbox/folder/cms backup/test">
           Options Indexes FollowSymLinks Includes ExecCGI
           AddType application/x-httpd-php .php3 .php 
           AddOutputFilter INCLUDES .php
           AllowOverride All
           Order allow,deny
           Allow from all
        </Directory>
     </VirtualHost>

コメントを外しました

    # Virtual hosts
    Include /Applications/XAMPP/etc/extra/httpd-vhosts.conf

ユーザーとグループの変更

    User "my username"
    #Group nogroup
    Group admin

そしてホストに追加

    127.0.0.1 cms.local

しかし、cms.local/php_file.php に移動すると、サーバー 500 エラーが発生し、php ファイルが表示される代わりにブラウザーによってダウンロードされます。localhost/php_file.php で同じページを表示しようとすると、すべて正常に動作します

ファイルをダウンロードしている理由を誰か教えてもらえますか?

ログとヘッダー情報:

ヘッダー情報:

    Request URL:http://cms.local/diary.php
    Request Method:GET
    Status Code:200 OK
    Request Headersview source
    Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
    Accept-Encoding:gzip,deflate,sdch
    Accept-Language:en-GB,en-US;q=0.8,en;q=0.6
    Cache-Control:max-age=0
    Connection:keep-alive
    Host:cms.local
    User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31
    Response Headersview source
    Accept-Ranges:bytes
    Connection:Keep-Alive
    Content-Type:application/x-httpd-php
    Date:Tue, 07 May 2013 23:01:58 GMT
    Keep-Alive:timeout=5, max=100
    Server:Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 mod_perl/2.0.4 Perl/v5.10.1
    Transfer-Encoding:chunked

アクセスログ:

    127.0.0.1 - - [08/May/2013:09:01:58 +1000] "GET /diary.php HTTP/1.1" 200 61851

エラーログ:

    [Wed May 08 09:05:54 2013] [notice] caught SIGTERM, shutting down
    [Wed May 08 09:06:05 2013] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
    [Wed May 08 09:06:06 2013] [notice] Digest: generating secret for digest authentication ...
    [Wed May 08 09:06:06 2013] [notice] Digest: done
    [Wed May 08 09:06:06 2013] [notice] Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations

ファイルとディレクトリのパーミッションは 644 に設定されていましたが、755 に変更しました。違いはありませんでした。

4

2 に答える 2

5

Finally found an answer that worked here: PHP Files won't open in browser - only download. What do I need to change to make it work properly?

Adding:

    <FilesMatch \.php$>
        SetHandler application/x-httpd-php
    </FilesMatch>

to the httpd.conf file fixed it

于 2013-06-05T01:01:44.220 に答える