]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - locale/it/pgsrc/AmministrazioneDiPhpWiki
Produced by PhpWiki 1.4.0RC-20100415
[SourceForge/phpwiki.git] / locale / it / pgsrc / AmministrazioneDiPhpWiki
1 Date: Thu, 15 Apr 2010 16:34:06 +0000
2 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC-20100415)
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 ----
18 == Page Explorer
19
20 First select pages and then define the action:
21
22 <?plugin-form WikiAdminSelect s="*" ?>
23
24 or call the available ~WikiAdmin actions directly:
25
26 [/Rimuovi] |
27   [/Rename] |
28     [/Replace] |
29       [/SetAcl] |
30         [/Chmod] |
31           [/Chown]
32
33 ----
34 == User Management
35
36 PhpWiki:EmailVerification is currently non-strict, leaving some possible holes, which can be administrated below.
37
38   This button will show a list of all users with registered emails and buttons to set the verification status manually.
39
40   <<WikiAdminUtils
41            action=email-verification
42            label="Email Verification"
43    >>
44
45 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._
46
47   <<WikiAdminUtils
48            action=access-restrictions
49            label="Access Restrictions"
50    >>
51
52 ----
53 == Cleanup
54
55 A Wiki SandBox is very easy to clean. Here you can restore it to
56 pristine condition by loading the default from pgsrc.
57
58   [Rake the SandBox|phpwiki:?action=loadfile&source=pgsrc/SandBox].
59
60 ----------
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 __[ZIP Snapshot | phpwiki:?action=zip]__ contains only the
71   latest versions of each page, while this __[ZIP Dump |
72   phpwiki:?action=zip&include=all]__ contains all archived versions.
73
74   (If the PhpWiki is configured to allow it, anyone can download a zip
75   file.)
76
77 If your php has ''zlib'' support, the files in the archive will be
78 compressed, otherwise they will just be stored.
79
80 === Dump to directory
81
82 Here you can dump pages of your Wiki into a directory of your choice.
83
84   <<WikiForm action=dumpserial>>
85
86 The most recent version of each page will written out to the
87 directory, one page per file. Your server must have write permissions
88 to the directory!
89
90 -----------
91 == Restoring
92
93 If you have dumped a set of pages from 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   <<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   <<WikiForm action=loadfile>>
114   <<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 -----------
126
127 == Format of the files
128
129 Currently the pages are stored, one per file, as MIME (RFC:2045)
130 e-mail (RFC:822) messages. The content-type ''application/x-phpwiki''
131 is used, and page meta-data is encoded in the content-type
132 parameters. (If the file contains several versions of a page, it will
133 have type ''multipart/mixed'', and contain several sub-parts, each
134 with type ''application/x-phpwiki''.)  The message body contains the
135 page text.
136
137 === Old Formats
138
139 __Serialized Files__
140
141   The dump to directory command used to dump the pages as PHP
142   ''serialized()'' strings. For humans, this made the files very hard
143   to read, and nearly impossible to edit.
144
145 __Plain Files__
146
147   Before that the page text was just dumped to a file--this means that
148   all page meta-data was lost. Note that when loading ''plain files'',
149   the page name is deduced from the file name.
150
151 The upload and load functions will automatically recognize each of
152 these three types of files, and handle them accordingly.
153
154 ----
155
156 == Dump pages as XHTML
157
158   <<WikiForm action=dumphtml>>
159
160 This will generate a directory of static pages suitable for
161 distribution on disk where no web server is available. The various
162 links for page editing functions and navigation are removed from the
163 pages.
164
165   The XHTML file collection can also be downloaded as an
166   __[XHTML ZIP Snapshot | phpwiki:?action=ziphtml]__.
167
168 ----
169
170 == Phpwiki Internals
171
172 These are here mostly for debugging purposes (at least, that's the
173 hope.)
174
175 In normal use, you shouldn't need to use these, though, then again,
176 they shouldn't really do any harm.
177
178 === Purge Markup Cache
179
180 (If your wiki is so configured,) the transformed (almost-HTML) content
181 of the most recent version of each page is cached. This speeds up page
182 rendering since parsing of the wiki-text takes a fair amount of juice.
183
184   Hitting this button will delete all cached transformed
185   content. (Each pages content will be transformed and re-cached next
186   time someone views it.)
187
188   <<WikiAdminUtils
189            action=purge-cache
190            label="Purge Cache"
191    >>
192
193 === Clean WikiDB of Illegal Filenames
194
195 Page names beginning with the subpage-separator, usually a slash
196 (=/=), are not allowed. Sometimes though an errant plugin or something
197 might create one....
198
199   This button will delete any pages with illegal page names.
200
201   <<WikiAdminUtils
202            action=purge-bad-pagenames
203            label="Exorcise WikiDB"
204    >>
205
206 ----
207 PhpWikiDocumentation