OSDN Git Service

BugTrack2/62: Do remove the whole design, 'Showing TrackBack-ping list by html'.
[pukiwiki/pukiwiki.git] / pukiwiki.php
1 <?php
2 // PukiWiki - Yet another WikiWikiWeb clone.
3 // $Id: pukiwiki.php,v 1.41 2005/04/29 11:26:28 henoheno Exp $
4 // Copyright (C) 2004-2005 PukiWiki Developers Team
5 // License: GPL v2 or (at your option) any later version
6
7 /////////////////////////////////////////////////
8 // Error reporting
9
10 // error_reporting(0): // Nothing
11 error_reporting(E_ERROR | E_PARSE); // Avoid E_WARNING, E_NOTICE, etc
12 // error_reporting(E_ALL);
13
14 /////////////////////////////////////////////////
15 // Directory definition
16 // (Ended with a slash like '../path/to/pkwk/', or '')
17 define('DATA_HOME',     '');
18 define('LIB_DIR',       'lib/');
19
20 /////////////////////////////////////////////////
21 require(LIB_DIR . 'pukiwiki.php');
22 ?>