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