]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/PhpWikiAdministration
New plugin: WikiAdminSetAclSimple
[SourceForge/phpwiki.git] / pgsrc / PhpWikiAdministration
1 Date: Fri, 13 Aug 2010 15:31:59 +0000
2 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415)
3 X-Rcs-Id: $Id$
4 Content-Type: application/x-phpwiki;
5   pagename=PhpWikiAdministration;
6   flags=PAGE_LOCKED;
7   markup=2;
8   charset=UTF-8
9 Content-Transfer-Encoding: binary
10
11 **//Note://** //Most of the actions on this page require administrative privileges.//
12
13 <<CreateToc jshide||=0 with_toclink||=1 position=right with_counter=1>>
14
15 == Page Explorer ==
16
17 First select pages and then define the action:
18
19 <?plugin-form WikiAdminSelect s="*" ?>
20
21 or call the available ~WikiAdmin actions directly:
22
23 | [[/Chown]] | [[/Markup]] | [[/Purge]] | [[/Remove]] | [[/Rename]] | [[/SearchReplace]] | [[/SetAcl]] | [[/SetAclSimple]]
24
25 == Global Access Rights ==
26
27 * [[SetGlobalAccessRightsSimple]]
28 * [[SetGlobalAccessRights]]
29
30 == User Management ==
31
32 === Reset a users password ===
33
34 <?plugin-form PasswordReset textinput=user method=post ?>
35
36 === Email Verification ===
37
38 This is currently non-strict, leaving some possible holes in not being able to
39 connect to certain mail hosts, which can be overridden below. See [[PhpWiki:EmailVerification]].
40
41 This button will show a list of all users with registered emails and buttons to set the verification status manually.
42
43 <<WikiAdminUtils action=email-verification label="Email Verification">>
44
45 === Access Restrictions (disabled) ===
46
47 To prevent from robots eating all possible ressources in a short time, blocking from certain IPs
48 or not-well-behaving user agents can be defined below. See [[PhpWiki:HowToBlockRobots]] and
49 [[MeatBall:SurgeProtector]]. //Note: Not yet enabled.//
50
51 <<WikiAdminUtils action=access-restrictions label="Access Restrictions">>
52
53 == Cleanup ==
54
55 A Wiki SandBox is very easy to clean. Here you can restore it to
56 pristine condition by loading the default from pgsrc.
57
58 **[[phpwiki:?action=loadfile&overwrite=1&source=pgsrc/SandBox|Rake the SandBox]]**
59
60 == Making Snapshots or Backups ==
61
62 === ZIP files of database ===
63
64 These links lead to zip files, generated on the fly, which contain all
65 the pages in your Wiki. The zip file will be downloaded to your local
66 computer.
67
68 This **[[phpwiki:?action=zip|ZIP Snapshot]]** contains only the
69 latest versions of each page, while this **[[phpwiki:?action=zip&include=all|ZIP Dump]]** contains all archived versions.
70
71 (If the ~PhpWiki is configured to allow it, anyone can download a zip file.)
72
73 If your php has //zlib// support, the files in the archive will be compressed, otherwise they will just be stored.
74
75 === Dump to directory ===
76
77 Here you can dump pages of your Wiki into a directory of your choice.
78
79 <<WikiForm action=dumpserial>>
80
81 The most recent version of each page will written out to the directory, one page per file. Your server must have write permissions to the directory!
82
83 == Restoring ==
84
85 If you have dumped a set of pages from ~PhpWiki, you can reload them
86 here. Note that pages in your database will be overwritten; thus, if
87 you dumped your HomePage when you load it from this form it will
88 overwrite the one in your database now. If you want to be selective
89 just delete the pages from the directory (or zip file) which you don't
90 want to load.
91
92 === Upload File ===
93
94 Here you can upload ZIP archives, or individual files from your
95 (client) machine.
96
97 <<WikiForm action=upload>>
98
99 === Load File ===
100
101 Here you can load ZIP archives, individual files or entire
102 directories. The file or directory must be local to the http
103 server. You can also use this form to load from an http: or ftp: URL.
104
105 <<WikiForm action=loadfile>>
106 <<WikiForm action=loadfile buttontext="Load & Overwrite" overwrite=1>>
107
108 === Upgrade ===
109
110 Do some verification checks and upgrade changes automatically, after having installed a
111 new phpwiki engine update:
112 * Upgrade new or changed page revisions from pgsrc,
113 * Upgrade the database schema (mysql //page.id auto_increment//, ADD //session.sess_ip//),
114
115 You can force overwrite or not:
116 * **[[phpwiki:HomePage?action=upgrade|Upgrade]]**
117 * **[[phpwiki:HomePage?action=upgrade&overwrite=1|Upgrade & Overwrite]]**
118
119 == Format of the files ==
120
121 === Current Format ===
122
123 Currently the pages are stored, one per file, as MIME (RFC:2045)
124 e-mail (RFC:822) messages. The content-type //application/x-phpwiki//
125 is used, and page meta-data is encoded in the content-type
126 parameters. (If the file contains several versions of a page, it will
127 have type //multipart/mixed//, and contain several sub-parts, each
128 with type //application/x-phpwiki//.)  The message body contains the
129 page text.
130
131 === Old Formats ===
132
133 ==== Serialized Files ====
134
135 The dump to directory command used to dump the pages as PHP
136 //serialized()// strings. For humans, this made the files very hard
137 to read, and nearly impossible to edit.
138
139 ==== Plain Files ====
140
141 Before that the page text was just dumped to a file--this means that
142 all page meta-data was lost. Note that when loading //plain files//,
143 the page name is deduced from the file name.
144
145 The upload and load functions will automatically recognize each of
146 these three types of files, and handle them accordingly.
147
148 == Dump pages as XHTML ==
149
150 <<WikiForm action=dumphtml>>
151
152 This will generate a directory of static pages suitable for
153 distribution on disk where no web server is available. The various
154 links for page editing functions and navigation are removed from the
155 pages.
156
157 The XHTML file collection can also be downloaded as an **[[phpwiki:?action=ziphtml|XHTML ZIP Snapshot]]**.
158
159 ----
160 [[CategoryActionPage]]