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