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