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