blob: 9042bc8489959741a1d688354870d9957a4708d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
<fieldset>
<legend>快速入門</legend>
<ol>
<li>在您的電腦上創建一個目錄。</li>
<li>複製這個目錄裡面的一些照片,並在網頁顯示中調整他們。<em>警告</em>:目錄和文件的名稱必須只包含字母,數字,“ - ”,“_” 或“.”。不能空白,及特殊字符。</li>
<li>一個FTP客戶端,複製目錄到Piwigo安裝的“照片庫”目錄。</li>
<li>登錄您的畫廊,去到 <span class="pwgScreen">管理</span> ,然後按一下大型的同步按鈕。</li>
</ol>
<p>恭喜您!您已成功創建您的照片庫的第一本相冊</p>
</fieldset>
<fieldset>
<legend>組織目錄和文件</legend>
<ul>
<li>
<p>Piwigo目錄中的相冊目錄
"照片庫"。下面的目錄樹中一個非常小的畫廊(但
使用許多功能):</p>
<pre>
照片庫
|-- 婚禮
| |-- 慶祝
| | |-- 到達
| | | |-- paul-alone.jpg
| | | +-- sarah-alone.jpg
| | +-- 出發
| | +-- paul-and-sarah.jpg
| +-- 聚會
| |-- dancers001.jpg
| |-- dancers002.jpg
| +-- dancers003.jpg
+-- 蜜月
|-- hotel.png
|-- video-from-plane.avi
+-- pwg_representative
+-- video-from-plane.jpg
+-- photoshoot
|-- img0001.jpg
|-- img0002.jpg
+-- pwg_format
|-- img0001.cr2
|-- img0001.cmyk.jpg
|-- img0001.zip
|-- img0002.cr2
+-- img0002.cmyk.jpg
</pre>
</li>
<li>Except for "pwg_representative" and "pwg_format" (see explanations below), each directory under "galleries" produces a album. There is no limit on deepness.</li>
<li>Basically, an element is represented by a file. A file can be a
Piwigo element if its extension is among <code>file_ext</code>
configuration parameter possibilities (see <span
class="filename">include/config_default.inc.php</span> file). A file can
be a picture if its extension is among <code>picture_ext</code>
configuration parameter possibilities.</li>
<li>Non photo elements (video, sounds, file texts, whatever you want...) are represented by default by an icon corresponding to the filename
extension. Optionally, you can associate a thumbnail and a representative
file (see video.avi in the example above).</li>
<li>Multiple formats: a photo can be available in several formats. In this example, we have 3 additional formats for img0001.jpg. You can activate this feature with <code>$conf['enable_formats'] = true;</code> in your local configuration and define a list of formats, like <code>$conf['format_ext'] = array('cmyk.jpg', 'cr2', 'zip');</code></li>
<li><em>警告</em>: 目錄和文件的名稱必須包含字母,數字,“ - ”,“_”或“.”。不能空白,及特殊字符。</li>
<li>一旦照片被放置在正確的
目錄, 去到: <span class="pwgScreen">管理 » 工具 »
同步</span></li>
</ul>
</fieldset>
|