SourceForge.JP: Open Source Software

LoginCreate AccountHelp[auto][en][zh][de][fr][ko][es][pt]

Browse CVS Repository

Annotation of /pukiwiki/pukiwiki/README.en.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (view) (download)

1 : henoheno 1.1 NOTE: This document become old, needs help
2 :     (2004-08-28)
3 :     ----------------------------------------------
4 :     NAME
5 :    
6 :     PukiWiki - PHP scripts for Web pages which can be edited by anyone,
7 :     at any time, from anywhere.
8 :    
9 : henoheno 1.2 PukiWiki 1.4.5_alpha
10 :     Copyright (C) 2001-2004 PukiWiki Developers Team
11 :     License: GPL
12 :     Based on "PukiWiki" 1.3 by yu-ji
13 : henoheno 1.1 http://pukiwiki.org/
14 :    
15 :     SYNOPSIS
16 :    
17 :     http://pukiwiki.org/
18 :    
19 :     DESCRIPTION
20 :    
21 :     PukiWiki consists of a series of PHP Scripts designed to build
22 :     a collection of web pages which can be edited by anyone without any restriction.
23 :     Pukiwiki is more flexible than moderate bulletinboards.
24 :     Since it ,basically, enables everyone change the design and content of any
25 :     page, while you can only leave messages in bulletinboards.
26 :    
27 :     PukiWiki is a unique Wiki-Engine which is based on the YukiWiki specification
28 :     created by Mr. Hiroshi Yuki.
29 : henoheno 1.2 Mr. yu-ji continued its development until the release of PukiWiki 1.3, and
30 : henoheno 1.1 PukiWiki Developers Team inherited the development from him after 1.3.1b.
31 :    
32 :     PukiWiki is written in PHP, so it's relatively easy to install
33 :     on a web server which supports PHP.
34 :    
35 :     PukiWiki is distributed under GPL. Thus it is, so to speak, a Free Software!
36 :    
37 :     REQUIREMENTS
38 :    
39 :     PukiWiki is only written in PHP, so it needs a PHP environment.
40 :     PHP4.1 or later versions are recommended.
41 :    
42 :     To use the multibyte features, PHP with multibyte extensions is needed.
43 :    
44 :     HOW TO MAKE SITE
45 :    
46 :     1. Download a PukiWiki package.
47 :     The latest package can be obtained from http://pukiwiki.org/.
48 :    
49 :     2. Extract the package on a local system or a target system.
50 :     The default name for the root directory of the system is "pukiwiki".
51 :     You may change it to another name if necessary.
52 :    
53 :     3. Edit pukiwiki.ini.php to make it fit to your environment.
54 :     Common setting : pukiwiki.ini.php
55 :     Settings for each agent:
56 :     I-MODE(NTT),AirH"(DDIPocket) : i_mode.ini.php
57 :     J-PHONE : jphone.ini.php
58 :     Default( any other above ) : default.ini.php
59 :     String replace setting : rules.ini.php
60 :    
61 :     4. Change the file permission as follows
62 :     Directory Permission (more secure (*1))
63 :     attach 777 707
64 :     backup 777 707
65 :     cache 777 707
66 :     counter 777 707
67 :     diff 777 707
68 :     face 755 705
69 :     image 755 705
70 :     plugin 755 705
71 :     skin 755 705
72 :     trackback 777 707
73 :     wiki 777 707
74 :     File
75 :     attach/* 666 606
76 :     backup/* 666 606
77 :     cache/* 666 606
78 :     diff/* 666 606
79 :     face/* 644 604
80 :     image/* 644 604
81 :     plugin/* 644 604
82 :     skin/* 644 604
83 :     trackback/* 666 606
84 :     wiki/* 666 606
85 :     *.php 644 604
86 :     *.lng 644 604
87 :     *.txt 644 604
88 :    
89 :     5. Now you are ready to access the site !
90 :     Please point your browser to:
91 :     http://[your domain]/[pukiwiki dir]/pukiwiki.php
92 :    
93 :     HOW TO MAKE A BACKUP OF DATA
94 :    
95 :     The document data is stored in the "wiki" directory. (default setting)
96 :     Please make a backup of your "wiki" directory.
97 :     And, if necessary, also make backups of the other directories - namely,
98 :     "attach" , "backup", "counter", "cache", "diff" and "trackback" with default setting.
99 :    
100 :     HOW TO CREATE PAGE
101 :    
102 :     1. Click on ''New'' menu ( at the top of a page) or ''new icon '' (at the
103 :     bottom of a page), then a page displaying an input box will open.
104 :     Please input whatever name you like for the new page and push the
105 :     button, then the new page will be created in edit mode.
106 :     2. Every time you write a WikiName, which includes at least two capitalized
107 :     letters in a word, or BracketName enclosing on a page, the question
108 :     mark, "?", appears at the tail of the written word. If you click the
109 :     mark, a new page with an editable textfield is displayed, and you can
110 :     modify the page as you usually edit a page.
111 :    
112 :     RULES FOR TEXT FORMATTING
113 :    
114 :     Refer to [[Text Formatting Rule]] page.
115 :    
116 :     INTERWIKI
117 :    
118 :     The InterWiki feature is supported from version 1.11 on.
119 :     InterWiki originally meant the function that established links among Wiki Sites.
120 :     The present InterWiki can connect any web site to strings. This expanded feature
121 :     is very convenient even though it is now a conceptually different function.
122 :     This function is ported nearly completely from Tiki.
123 :    
124 :     Please refer to [[InterWikiTechnical]] page for details.
125 :    
126 :     RDF/RSS
127 :    
128 :     Since version 1.2.1, the function to create RDF/RSS from RecentChanges
129 :     has been supported.
130 : henoheno 1.2 Since version 1.4.5, RSS 2.0 has been supported.
131 : henoheno 1.1
132 : henoheno 1.2 * Output example:
133 :     RSS 0.91 http://path/to/pukiwiki/index.php?plugin=rss
134 :     RSS 1.0 http://path/to/pukiwiki/index.php?plugin=rss&ver=1.0
135 :     RSS 2.0 http://path/to/pukiwiki/index.php?plugin=rss&ver=2.0
136 : henoheno 1.1
137 :     TODO
138 :    
139 :     http://pukiwiki.sourceforge.jp/dev/?BugTrack
140 :    
141 :     AUTHOR
142 :    
143 : henoheno 1.2 PukiWiki Developers Team http://pukiwiki.sourceforge.jp/dev/
144 :     Based on "PukiWiki" 1.3 by yu-ji
145 : henoheno 1.1
146 :     Please send questions, opinions and bug reports to http://pukiwiki.org/
147 :    
148 :     LICENCE
149 :    
150 :     PukiWiki is distributed under GNU GPL/2 (GNU General Public License) .
151 :     (http://www.gnu.org)
152 :    
153 :     ACKNOWLEDGEMENT
154 :    
155 :     First of all, thanks so much to the users of PukiWiki and the members of
156 :     PukiWiki Developers Team.
157 : henoheno 1.2 Special thanks to Mr. yu-ji(aka sng) who developed the first PukiWiki.
158 : henoheno 1.1 And also thanks to Mr. Hiroshi Yuki who was willing to accept our cloning
159 :     YukiWiki and
160 :     Cunningham & Cunningham, Inc. who created the original WikiWikiWeb.
161 :    
162 :     REFERENCE
163 :    
164 : henoheno 1.2 * PukiWiki Web Site http://pukiwiki.org/
165 :     * PukiWiki Developer's Site http://pukiwiki.sourceforge.jp/dev/
166 :     * yu-ji's Web Site http://factage.com/yu-ji/
167 :     * Hiroshi Yuki 's Web Site http://www.hyuki.com/
168 :     * YukiWiki http://www.hyuki.com/yukiwiki/
169 :     * Tiki http://todo.org/cgi-bin/jp/tiki.cgi
170 :     * Original WikiWikiWeb http://c2.com/cgi/wiki?WikiWikiWeb
171 :     * Author of WikiWikiWeb(Cunningham & Cunningham, Inc.) http://c2.com/

Back to SourceForge.jp
  SourceForge.jp (Powered by ViewVC)
Powered by ViewVC 1.0.5
ViewVC Help