]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - locale/it/pgsrc/AmministrazioneDiPhpWiki
Wikicreole syntax
[SourceForge/phpwiki.git] / locale / it / pgsrc / AmministrazioneDiPhpWiki
1 Date: Fri,  4 Feb 2011 16:36:44 +0000
2 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1)
3 X-Rcs-Id: $Id$
4 Content-Type: application/x-phpwiki;
5   pagename=AmministrazioneDiPhpWiki;
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
12 privileges. They won't work unless you have set an admin username and
13 password in the PhpWiki config file._
14
15 <<CreateToc jshide||=1 with_toclink||=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 | [[/Rimuovi]] | [[/Rename]] | [[/Replace]] | [[/SetAcl]] | [[/Chmod]] | [[/Chown]]
26
27 == User Management
28
29 PhpWiki:EmailVerification is currently non-strict, leaving some possible holes, which can be administrated below.
30
31   This button will show a list of all users with registered emails and buttons to set the verification status manually.
32
33   <<WikiAdminUtils
34            action=email-verification
35            label="Email Verification"
36    >>
37
38 To prevent from robots eating all possible ressources in a short time, blocking from certain IP's or not-well-behaving user agents can be defined below. See PhpWiki:HowToBlockRobots and MeatBall:SurgeProtector. _Note: Not yet enabled._
39
40   <<WikiAdminUtils
41            action=access-restrictions
42            label="Access Restrictions"
43    >>
44
45 ----
46 == Cleanup
47
48 A Wiki SandBox is very easy to clean. Here you can restore it to
49 pristine condition by loading the default from pgsrc.
50
51   [Rake the SandBox|phpwiki:?action=loadfile&source=pgsrc/SandBox].
52
53 ----------
54
55 == Making Snapshots or Backups
56
57 === ZIP files of database
58
59 These links lead to zip files, generated on the fly, which contain all
60 the pages in your Wiki. The zip file will be downloaded to your local
61 computer.
62
63   This **[ZIP Snapshot | phpwiki:?action=zip]** contains only the
64   latest versions of each page, while this **[ZIP Dump |
65   phpwiki:?action=zip&include=all]** contains all archived versions.
66
67   (If the PhpWiki is configured to allow it, anyone can download a zip
68   file.)
69
70 If your php has ''zlib'' support, the files in the archive will be
71 compressed, otherwise they will just be stored.
72
73 === Dump to directory
74
75 Here you can dump pages of your Wiki into a directory of your choice.
76
77   <<WikiForm action=dumpserial>>
78
79 The most recent version of each page will written out to the
80 directory, one page per file. Your server must have write permissions
81 to the directory!
82
83 -----------
84 == Restoring
85
86 If you have dumped a set of pages from PhpWiki, you can reload them
87 here. Note that pages in your database will be overwritten; thus, if
88 you dumped your HomePage when you load it from this form it will
89 overwrite the one in your database now. If you want to be selective
90 just delete the pages from the directory (or zip file) which you don't
91 want to load.
92
93 === Upload File
94
95 Here you can upload ZIP archives, or individual files from your
96 (client) machine.
97
98   <<WikiForm action=upload>>
99
100 === Load File
101
102 Here you can load ZIP archives, individual files or entire
103 directories. The file or directory must be local to the http
104 server. You can also use this form to load from an http: or ftp: URL.
105
106   <<WikiForm action=loadfile>>
107   <<WikiForm action=loadfile buttontext="Load & Overwrite" overwrite=1>>
108
109 === Upgrade
110
111 Do some verification checks and upgrade changes automatically, after having installed a 
112 new phpwiki engine update:
113 * Upgrade new or changed page revisions from pgsrc,
114 * Upgrade the database schema (mysql _page.id auto_increment_, ADD _session.sess_ip_),
115
116 ;:[ Upgrade | phpwiki:HomePage?action=upgrade ]
117
118 -----------
119
120 == Format of the files
121
122 Currently the pages are stored, one per file, as MIME (RFC:2045)
123 e-mail (RFC:822) messages. The content-type ''application/x-phpwiki''
124 is used, and page meta-data is encoded in the content-type
125 parameters. (If the file contains several versions of a page, it will
126 have type ''multipart/mixed'', and contain several sub-parts, each
127 with type ''application/x-phpwiki''.)  The message body contains the
128 page text.
129
130 === Old Formats
131
132 **Serialized Files**
133
134   The dump to directory command used to dump the pages as PHP
135   ''serialized()'' strings. For humans, this made the files very hard
136   to read, and nearly impossible to edit.
137
138 **Plain Files**
139
140   Before that the page text was just dumped to a file--this means that
141   all page meta-data was lost. Note that when loading ''plain files'',
142   the page name is deduced from the file name.
143
144 The upload and load functions will automatically recognize each of
145 these three types of files, and handle them accordingly.
146
147 ----
148
149 == Dump pages as XHTML
150
151   <<WikiForm action=dumphtml>>
152
153 This will generate a directory of static pages suitable for
154 distribution on disk where no web server is available. The various
155 links for page editing functions and navigation are removed from the
156 pages.
157
158   The XHTML file collection can also be downloaded as an
159   **[XHTML ZIP Snapshot | phpwiki:?action=ziphtml]**.
160
161 ----
162
163 == Phpwiki Internals
164
165 These are here mostly for debugging purposes (at least, that's the
166 hope.)
167
168 In normal use, you shouldn't need to use these, though, then again,
169 they shouldn't really do any harm.
170
171 === Purge Markup Cache
172
173 (If your wiki is so configured,) the transformed (almost-HTML) content
174 of the most recent version of each page is cached. This speeds up page
175 rendering since parsing of the wiki-text takes a fair amount of juice.
176
177   Hitting this button will delete all cached transformed
178   content. (Each pages content will be transformed and re-cached next
179   time someone views it.)
180
181   <<WikiAdminUtils
182            action=purge-cache
183            label="Purge Cache"
184    >>
185
186 === Clean WikiDB of Illegal Filenames
187
188 Page names beginning with the subpage-separator, usually a slash
189 (=/=), are not allowed. Sometimes though an errant plugin or something
190 might create one....
191
192   This button will delete any pages with illegal page names.
193
194   <<WikiAdminUtils
195            action=purge-bad-pagenames
196            label="Exorcise WikiDB"
197    >>
198
199 ----
200 PhpWikiDocumentation