]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/PhpWikiAdministration
Jeff hacks again: LOT's of changes.
[SourceForge/phpwiki.git] / pgsrc / PhpWikiAdministration
1 __Note__: The actions on this page require administrative privileges.
2 They won't work unless you have set an admin username and password in the PhpWiki config file.
3
4 -----------
5 ! Log In
6
7  __[Log In | phpwiki:?action=login]__
8
9 This allows you to login.
10 While you are logged in you will be able to ''lock'', ''unlock'' and ''delete'' pages.
11 You will also be able edit ''locked'' pages.
12
13 ----------
14
15 ! ZIP files of database
16
17  __[ZIP Snapshot | phpwiki:?action=zip]__ : contains only the latest versions
18
19  __[ZIP Dump | phpwiki:?action=zip&include=all]__ : contains all archived versions
20
21 These links lead to zip files, generated on the fly, which contain the most
22 recent versions of all pages in the PhpWiki. The pages are stored, one per
23 file, as MIME (RFC2045) e-mail (RFC822) messages, with the content type
24 application/x-phpwiki for the snapshot and content type multipart/mixed for
25 the dump. In the latter case, there is one subpart (with type
26 application/x-phpwiki) for each version of the
27 page (in chronological order). The message body contains the page text,
28 while the page meta-data is included as parameters in the
29 Content-Type: header field.
30
31 -----------
32
33 ! Load / Dump Serialized Pages
34
35 Here you can load or dump pages of your Wiki into a directory of your
36 choice.
37
38 __Dump__
39
40 [ Dump Serialized Pages | phpwiki:?action=dumpserial&directory=%/tmp/wikidump ]
41
42 Pages will be written out as "serialized" strings of a PHP
43 associative array, meaning they will not be human readable. If
44 the directory does not exist PhpWiki will try to create one for you.
45 Ensure that your server has write permissions to the directory!
46
47 __Load__
48
49 [ Load Serialized Pages | phpwiki:?action=loadserial&directory=%/tmp/wikidump ]
50
51 If you have dumped a set of pages from PhpWiki, you can reload them here.
52 Note that pages in your database will be overwritten; thus, if you dumped
53 your FrontPage when you load it from this form it will overwrite the one
54 in your database now. If you want to be selective just delete
55 the pages from the directory you don't want to load.
56
57 -----------