-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
48 lines (32 loc) · 1.39 KB
/
about.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
40
41
42
43
44
45
46
47
48
<?php
/*
this page is used as doxygen output mainpage,
content is pasted in from README.
*/
/**
\mainpage
TikiWiki
DOCUMENTATION
* It is highly recommended you refer to the online documentation:
* http://tikiwiki.org/InstallTiki for a setup guide
* http://tikiwiki.org/InstallTikiHelp for what to do in case of problems
* It might also be helpful to look into the official Manual. Last released
documentation, in pdf format (350 pages) (outdated at the time of this writing):
http://tikiwiki.org/tiki.pdf (version 1.6 but with many valuable help)
* The documentation for all versions is maintained on http://doc.tikiwiki.org,
come and help if you can and wish.
* Notes about the releases are accessible from http://tikiwiki.org/ReleaseProcess19
* TikiWiki is also a live community on irc.freenode.net channel #tikiwiki
INSTALLATION
* There is a file INSTALL in this directory with notes on how to setup and
configure Tiki. Again, see http://tikiwiki.org/InstallTiki for the latest install help.
COPYRIGHT
Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.All
Rights Reserved. See copyright.txt for details and a complete list of authors.
Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
... Have fun!
*/
// I call index.php because tiki may not be setup when people attempt to call this.
header ("location: index.php");
die;
?>