pukiwikiをインストールしたくなって、サーバ上に置いて見ましたが、アクセスして見ると、
<?php // PukiWiki - Yet another WikiWikiWeb clone. // $Id: index.php,v 1.9 2006/05/13 07:39:49 henoheno Exp $ // Copyright (C) 2001-2006 PukiWiki Developers Team // License: GPL v2 or (at your option) any later version // Error reporting //error_reporting(0); // Nothing error_reporting(E_ERROR | E_PARSE); // Avoid E_WARNING, E_NOTICE, etc //error_reporting(E_ALL); // Debug purpose // Special //define('PKWK_READONLY', 1); //define('PKWK_SAFE_MODE', 1); //define('PKWK_OPTIMISE', 1); //define('TDIARY_THEME', 'digital_gadgets'); // Directory definition // (Ended with a slash like '../path/to/pkwk/', or '') define('DATA_HOME', ''); define('LIB_DIR', 'lib/'); require(LIB_DIR . 'pukiwiki.php'); ?>
と表示されて、pukiwikiの画面が出ません。どうしたら良いでしょうか。
環境
CentOS6.9
Apache2.2.15-60
PHP-7.0.21-1
フォルダは/var/www/pukiwiki-1.5.1にあり、
/var/www/html/以下にin -sでリンクを貼ってあります。
現在pho.conf%はすでにあり設定されています
# # PHP is an HTML-embedded scripting language which attempts to make it # easy for developers to write dynamically generated webpages. # # Cannot load both php5 and php7 modules <IfModule !mod_php5.c> <IfModule prefork.c> LoadModule php7_module modules/libphp7.so </IfModule> </IfModule> <IfModule !mod_php5.c> <IfModule !prefork.c> LoadModule php7_module modules/libphp7-zts.so </IfModule> </IfModule> # # The following lines prevent .user.ini files from being viewed by Web clients. # <Files ".user.ini"> <IfModule mod_authz_core.c> Require all denied </IfModule> <IfModule !mod_authz_core.c> Order allow,deny Deny from all Satisfy All </IfModule> </Files> # # Allow php to handle Multiviews # AddType text/html .php # # Add index.php to the list of files that will be served as directory # indexes. # DirectoryIndex index.php # mod_php options <IfModule mod_php7.c> # # Cause the PHP interpreter to handle files with a .php extension. # # # PHP is an HTML-embedded scripting language which attempts to make it # easy for developers to write dynamically generated webpages. # # Cannot load both php5 and php7 modules <IfModule !mod_php5.c> <IfModule prefork.c> LoadModule php7_module modules/libphp7.so </IfModule> </IfModule>
とphp.confが書かれています
回答2件
あなたの回答
tips
プレビュー