]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/PhpWikiAdministration
Users do not know about config file
[SourceForge/phpwiki.git] / pgsrc / PhpWikiAdministration
1 Date: Mon, 22 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 privileges.
12
13 <?plugin 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 [/Remove] |
24   [/Rename] |
25     [/Replace] |
26       [/SetAcl] |
27         [/Chmod] |
28           [/Chown]
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 <?plugin WikiAdminUtils
44          action=email-verification
45          label="Email Verification"
46 ?>
47
48 !! Access Restrictions (disabled)
49
50 To prevent from robots eating all possible ressources in a short time, blocking from certain IPs
51 or not-well-behaving user agents can be defined below. See [PhpWiki:HowToBlockRobots] and
52 [MeatBall:SurgeProtector]. _Note: Not yet enabled._
53
54 <?plugin WikiAdminUtils
55          action=access-restrictions
56          label="Access Restrictions"
57 ?>
58
59 !!! Cleanup
60
61 A Wiki SandBox is very easy to clean. Here you can restore it to
62 pristine condition by loading the default from pgsrc.
63
64 [Rake the SandBox|phpwiki:?action=loadfile&source=pgsrc/SandBox].
65
66 !!! Making Snapshots or Backups
67
68 !! ZIP files of database
69
70 These links lead to zip files, generated on the fly, which contain all
71 the pages in your Wiki. The zip file will be downloaded to your local
72 computer.
73
74 This *[ZIP Snapshot | phpwiki:?action=zip]* contains only the
75 latest versions of each page, while this *[ZIP Dump | phpwiki:?action=zip&include=all]* contains all archived versions.
76
77 (If the [PhpWiki|PhpWiki:PhpWiki] is configured to allow it, anyone can download a zip file.)
78
79 If your php has _zlib_ support, the files in the archive will be compressed, otherwise they will just be stored.
80
81 !! Dump to directory
82
83 Here you can dump pages of your Wiki into a directory of your choice.
84
85 <?plugin WikiForm action=dumpserial?>
86
87 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!
88
89 !!! Restoring
90
91 If you have dumped a set of pages from [PhpWiki|PhpWiki:PhpWiki], you can reload them
92 here. Note that pages in your database will be overwritten; thus, if
93 you dumped your HomePage when you load it from this form it will
94 overwrite the one in your database now. If you want to be selective
95 just delete the pages from the directory (or zip file) which you don't
96 want to load.
97
98 !! Upload File
99
100 Here you can upload ZIP archives, or individual files from your
101 (client) machine.
102
103 <?plugin WikiForm action=upload?>
104
105 !! Load File
106
107 Here you can load ZIP archives, individual files or entire
108 directories. The file or directory must be local to the http
109 server. You can also use this form to load from an http: or ftp: URL.
110
111 <?plugin WikiForm action=loadfile?>
112 <?plugin WikiForm action=loadfile buttontext="Load & Overwrite" overwrite=1?>
113
114 !! Upgrade
115
116 Do some verification checks and upgrade changes automatically, after having installed a
117 new phpwiki engine update:
118 * Upgrade new or changed page revisions from pgsrc,
119 * Upgrade the database schema (mysql _page.id auto_increment_, ADD _session.sess_ip_),
120
121 [ Upgrade | phpwiki:HomePage?action=upgrade ]
122
123 !!! Format of the files
124
125 !! Current Format
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]