2017-06-19 3 views
1

RHEL 7サーバ(Apache 2.4およびPHP 7.0を使用)にPiwikをインストール/設定しましたが、画像が表示されません。Piwikに画像が表示されない

URLのf.ex.のロゴはhttp://localhost/plugins/Morpheus/images/logo.svgまたは "http://.../plugins/Morpheus/images/logo.png"です。直接URLを開くと、次のエラーが表示されます。

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at (mail) to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

ご協力いただきありがとうございます。

敬具

"..plugins /の.htaccess ":

'# This file is auto generated by Piwik, do not edit directly 
# Please report any issue or improvement directly to the Piwik team. 

# First, deny access to all files in this directory 
<Files "*"> 
<IfModule mod_version.c> 
     <IfVersion < 2.4> 
       Order Deny,Allow 
       Deny from All 
     </IfVersion> 
     <IfVersion >= 2.4> 
       Require all denied 
     </IfVersion> 
</IfModule> 
<IfModule !mod_version.c> 
     <IfModule !mod_authz_core.c> 
       Order Deny,Allow 
       Deny from All 
     </IfModule> 
     <IfModule mod_authz_core.c> 
       Require all denied 
     </IfModule> 
</IfModule> 
</Files> 
# Serve HTML files as text/html mime type - Note: requires mod_mime apache module! 
<IfModule mod_mime.c> 
    AddHandler text/html .html 
    AddHandler text/html .htm 
</IfModule> 

# Allow to serve static files which are safe 
<Files ~ "\.(gif|ico|jpg|png|svg|js|css|htm|html|swf|mp3|mp4|wav|ogg|avi|ttf|eot)$"> 
<IfModule mod_version.c> 
     <IfVersion < 2.4> 
       Order Allow,Deny 
       Allow from All 
     </IfVersion> 
     <IfVersion >= 2.4> 
       Order Allow,Deny 
       Allow from All 
       #Require all granted 
     </IfVersion> 
</IfModule> 
<IfModule !mod_version.c> 
     <IfModule !mod_authz_core.c> 
       Order Allow,Deny 
       Allow from All 
     </IfModule> 
     <IfModule mod_authz_core.c> 
       Order Allow,Deny 
       Allow from All 
       #Require all granted 
     </IfModule> 
</IfModule> 
</Files>' 
+0

PHPエラーログにエラーが発生しましたか?あなたはホームページ上のzipやgithubからインストールしましたか? –

+0

ホームページのzipからインストールしました。私はApacheログにエラーがあります。[core:alert] [pid 19946:tid 140541675198208] [client ip-address:62554] /appbase/http/piwiktest/plugins/.htaccess: Duezceli

+0

.htaccessファイルの使用を無効にできますか? https://serverfault.com/a/529015 –

答えて

0

私は「" ../piwik/plugins/.htaccess" 内のすべての行をコメントしています。.. /piwik/libs/.htaccess "(ファイルの内容については上記を参照)。これは私の問題を解決しました。少なくともページ/イメージは正しく表示されていました。

関連する問題