forked from miko2u/pukiwiki-plus-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (32 loc) · 1.12 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
// PukiWiki Plus! - Yet another WikiWikiWeb clone.
// $Id: index.php,v 1.9.4 2009/04/07 00:53:00 upk Exp $
// Copyright (C)
// 2005-2007,2009 PukiWiki Plus! Team
// 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); // 0,1,2,3,4
//define('PKWK_SAFE_MODE', 1); // 0,1,2,3,4
//define('PKWK_OPTIMISE', 1); // Obsolete - Plus! not used
// THEME
// tDiary THEME
//define('TDIARY_THEME', 'digital_gadgets');
// PLUS! THEME
// ex. bluebox, cloudwalk, iridwire, iridorange, orangebox, pukiwiki
//define('PLUS_THEME', 'bluebox');
// Directory definition
// (Ended with a slash like '../path/to/pkwk/', or '')
// define('SITE_HOME', '../wiki-common/');
define('SITE_HOME', '');
// define('DATA_HOME', '../../wiki-data/contents/');
define('DATA_HOME', '');
define('ROOT_URI', '');
define('WWW_HOME', '');
define('LIB_DIR', SITE_HOME . 'lib/');
require(LIB_DIR . 'pukiwiki.php');
?>