2016-08-08 23 views
-1

編集:私はブートストラップを使用しています 編集:bottomitesとfooterをactualites.php(ファイルの終わり)に含めると動作します。include_onceは1つのページで動作しますが、他のページでは動作しません。表示するエラーはありません

私はウェブサイトをビルドしており、URLでコンテンツを含めることにしました。だから私は持っている:

<?php 
    // Menu 
    include_once "menu.php"; 
    // Content 
    include_once "contenu.php"; 
    // Bottom 
    include_once "bottom.php"; 
    // Footer 
    include_once "footer.php"; 
?> 

私は、URLのドメイン名/ Aproposは、bottom.phpとfooter.php appears.Butにアクセスすると、私は、ドメイン名/ actualites、底面およびフッターへのアクセスが表示されていません。ここで

エラー・ログ・ファイルの内容です:

[Mon Aug 08 14:44:55.832020 2016] [core:warn] [pid 7276:tid 340] AH00098: pid file D:/UwAmp/bin/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run? 
[Mon Aug 08 14:44:56.081628 2016] [ssl:warn] [pid 7276:tid 340] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache] 
[Mon Aug 08 14:44:56.097228 2016] [mpm_winnt:notice] [pid 7276:tid 340] AH00455: Apache/2.4.10 (Win32) OpenSSL/1.0.1h PHP/5.4.31 configured -- resuming normal operations 
[Mon Aug 08 14:44:56.097228 2016] [mpm_winnt:notice] [pid 7276:tid 340] AH00456: Apache Haus VC9 Server built: Jul 15 2014 20:34:18 
[Mon Aug 08 14:44:56.097228 2016] [core:notice] [pid 7276:tid 340] AH00094: Command line: 'D:\\UwAmp\\bin\\apache\\bin\\httpd.exe -d D:/UwAmp/bin/apache -f D:\\UwAmp\\bin\\apache\\conf\\httpd.conf' 
[Mon Aug 08 14:44:56.097228 2016] [mpm_winnt:notice] [pid 7276:tid 340] AH00418: Parent: Created child process 7524 
AH00548: NameVirtualHost has no effect and will be removed in the next release D:/UwAmp/bin/apache/conf/httpd.conf:264 
[Mon Aug 08 14:44:57.033258 2016] [ssl:warn] [pid 7524:tid 352] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache] 
[Mon Aug 08 14:44:57.111261 2016] [mpm_winnt:notice] [pid 7524:tid 352] AH00354: Child: Starting 64 worker threads. 
+0

domain-name/actualitesにアクセスしてエラー報告を有効にし、そこにあるものを確認するとエラーが発生していると思います。 – Akam

+1

PHPファイルで追加して有効にしました:ini_set( 'display_errors'、1); error_reporting(E_ALL);しかし、私はエラーが発生しません – arshie92

+0

php_iniで:display_errors =オン – arshie92

答えて

0

だから、最終的に私はPHPファイルをコピーした、それを名前を変更し、コピーしたファイルを使用して、今それもコンテンツを働いても同じです。

私は本当に理解していません。

ありがとうございます。

関連する問題