diff options
author | plegall <plg@piwigo.org> | 2005-09-03 16:36:05 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-03 16:36:05 +0000 |
commit | 7eae7595909a49d4355453c73638151097a53f20 (patch) | |
tree | ec20fce221086be1ece0f292a953264d90ec5360 /language/en_UK.iso-8859-1/help | |
parent | 857eec2218afe027b9d87f91aa7de144fc4e3111 (diff) |
- modification : less configuration parameters in administration
screen. These parameters are move to include/config_default.inc.php.
- new : ability to add a single picture to caddie from picture.php
- new : contextual help, only a few pages are available.
- new : ability to delete users from admin/user_list
- modification : reorganization of configuration file
- new : configuration parameter use_exif_mapping
- improvement : MOD hidemail added to standard
git-svn-id: http://piwigo.org/svn/trunk@858 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | language/en_UK.iso-8859-1/help/configuration.html | 87 | ||||
-rw-r--r-- | language/en_UK.iso-8859-1/help/maintenance.html | 38 | ||||
-rw-r--r-- | language/en_UK.iso-8859-1/help/remote_site.html | 51 | ||||
-rw-r--r-- | language/en_UK.iso-8859-1/help/synchronize.html | 1 |
4 files changed, 177 insertions, 0 deletions
diff --git a/language/en_UK.iso-8859-1/help/configuration.html b/language/en_UK.iso-8859-1/help/configuration.html new file mode 100644 index 000000000..1ce846feb --- /dev/null +++ b/language/en_UK.iso-8859-1/help/configuration.html @@ -0,0 +1,87 @@ +<h2>Configuration</h2> + +<p>This screen let the administrator do basic configuration. Indeed, this +screen only shows simple configuration parameters that should be enough for +the vast majority of administrators. If you want to see other numerous (and +advanced) configuration parameters, read file <span +cass="filename">include/config_default.inc.php</span>.</p> + +<p>This screen is divided in several sections, regrouping configuration +parameters by theme.</p> + +<h3>General</h3> + +<ul> + + <li><strong>History</strong>: visits on pages <span + class="pwgScreen">category.php</span> and <span + class="pwgScreen">picture.php</span> will be registered in + <code>history</code> table. Visits will be shown in <span + class="pwgScreen">Administration, General, History</span>.</li> + + <li><strong>Lock gallery</strong>: Lock the entire gallery for + maintenance. Only administrator users will be able to reach the + gallery.</li> + +</ul> + + +<h3>User comments</h3> + +<ul> + + <li><strong>Comments for all</strong>: Even guest not registered can post + comments.</li> + + <li><strong>Number of comments per page</strong>.</li> + + <li><strong>Validation</strong>: an administrator validate users posted + comments before they become visible on the site. User comments validation + takes place in screen <span class="pwgScreen">Administration, Pictures, + Comments</span>.</li> + +</ul> + +<h3>Default display</h3> + +<p>Here you can change display options used by default, when guest is not +connected. Once connected, these options are overloaded by user own options +(modifiable in <span class="pwgScreen">profile</span>).</p> + +<p>It is possible to change display options for all existing users, but the +screen to consider is <span class="pwgScreen">Administration, +Identification, Users</span>, where you can options for a selected list of +users.</p> + +<ul> + + <li><strong>Language</strong>: concerns only PhpWebGallery + labels. Category names, picture names and all descriptions are not + localized.</li> + + <li><strong>Number of images per row</strong></li> + + <li><strong>Number of rows per page</strong></li> + + <li><strong>Interface theme</strong></li> + + <li><strong>Recent period</strong>: By days. Period within a picture is + shown as new. Must be superior to 1 day.</li> + + <li><strong>Expand all categories</strong>: Expand all categories by + default in the menu? <em>Warning</em>: this option is resources consuming + and may generate a huge menu if your category tree is contains many + categories.</li> + + <li><strong>Show number of comments</strong>: show the number of comments + for each picture on the thumbnails page. Resource consuming.</li> + + <li><strong>Maximum width of the pictures</strong>: maximum displayed + width. If pictures are larger than this setting, they will be resized on + display. If you consider filling this option, you'd better consider + modifying the width of your pictures instead.</li> + + <li><strong>Maximum height of the pictures</strong>: same remarks as for + previous setting.</li> + +</ul> diff --git a/language/en_UK.iso-8859-1/help/maintenance.html b/language/en_UK.iso-8859-1/help/maintenance.html new file mode 100644 index 000000000..85e905cc9 --- /dev/null +++ b/language/en_UK.iso-8859-1/help/maintenance.html @@ -0,0 +1,38 @@ +<h2>Maintenance</h2> + +<p>To optimize page generation time, PhpWebGallery uses cached +information. For example, instead of counting the number of pictures +contained in each category at each page reload, this information is stored +in the database. In theory, this information should always be correct, but +sometimes an error can occur and cached information becomes wrong.</p> + +<p>Some informations become useless with time. Deleting this useless +information from database make you save disk space.</p> + +<ul> + + <li><strong>update categories informations</strong>. For each category, + informations to update or control are the following : list of parent + categories, number of pictures, date of the last picture, position among + brother categories, position among all categories. This action also checks + the coherence of representative picture.</li> + + <li><strong>update images informations</strong>. For each picture, + informations to update are : full path to file, averate + rate. <em>Warning</em>: do not get confuse with metadata informations + which can be synchronized from <span class="pwgScreen">Administration, + General, Synchronize</span> or by reaching the modification screen of a + single picture (through <span class="pwgScreen">Picture</span> for + example).</li> + + <li><strong>purge history</strong>. Delete all lines from + <code>history</code> table. Screen <span class="pwgScreen">Administration, + General, History</span> shows no informations anymore on past + history. <em>Warning</em>: all data will be lost and there is no way to + get informations back.</li> + + <li><strong>purge sessions</strong>. Delete expired user sessions.</li> + + <li><strong>purge never used notification feeds</strong></li> + +</ul> diff --git a/language/en_UK.iso-8859-1/help/remote_site.html b/language/en_UK.iso-8859-1/help/remote_site.html new file mode 100644 index 000000000..38cd8f370 --- /dev/null +++ b/language/en_UK.iso-8859-1/help/remote_site.html @@ -0,0 +1,51 @@ +<h2>Remote site</h2> + +<p>PhpWebGallery offers the possibility to use several servers to store the +images which will compose your gallery. It can be useful if your gallery is +installed on one limited space and that you have a big quantity of images to +be shown.</p> + +<ol> + + <li>edit file <span class="filename">tools/create_listing_file.php</span>, + by modifying parameters section such as + <code>$conf['prefix_thumbnail']</code> or + <code>$conf['use_exif']</code>.</li> + + <li>place file <span class="filename">tools/create_listing_file.php</span> + modified on your distant website, in the same directory than your category + directories (as the directory <span class="filename">galleries</span> of + this website) by ftp. For the example, let's say that you can access <span + class="filename">http://example.com/galleries/create_listing_file.php</span>.</li> + + <li>go to <span class="pwgScreen">administration panel, General, Remote + sites</span>. Ask to create a new site, for example <span + class="filename">http://example.com/galleries</span>.</li> + + <li>a new remote site is registered. You can perform 4 actions : + + <ol> + + <li><strong>generate listing</strong> : launches a distant request to + generate a distant file listing</li> + + <li><strong>update</strong> : reads the distant <span + class="filename">listing.xml</span> file and synchronizes with + database informations.</li> + + <li><strong>clean</strong> : removes distant <span + class="filename">listing.xml</span> file.</li> + + <li><strong>delete</strong> : deletes the site (and all related + categories and elements) in the database.</li> + + </ol> + </li> +</ol> + +<p>You can do all this by hand by generating yourself the <span +class="filename">listing.xml</span> file, moving it from your distant server +to you local PhpWebGallery root directory and opening the remote site +management screen : PhpWebGallery will propose you to use the found +listing.xml file.</p> + diff --git a/language/en_UK.iso-8859-1/help/synchronize.html b/language/en_UK.iso-8859-1/help/synchronize.html new file mode 100644 index 000000000..835e0c52e --- /dev/null +++ b/language/en_UK.iso-8859-1/help/synchronize.html @@ -0,0 +1 @@ +<h2>Synchronize</h2> |