source: trunk/include/config_default.inc.php @ 6316

Last change on this file since 6316 was 6316, checked in by plg, 14 years ago

merge r6313 from branch 2.1 to trunk

bug 1685 fixed: typo on identification.php link

File size: 31.1 KB
RevLine 
[770]1<?php
2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[5196]5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
[2297]6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
[770]23
24/**
25 *                           configuration page
26 *
27 * Set configuration parameters that are not in the table config. In the
28 * application, configuration parameters are considered in the same way
29 * coming from config table or config_default.inc.php.
30 *
31 * It is recommended to let config_default.inc.php as provided and to
32 * overwrite configuration in your local configuration file
[5215]33 * local/config/config.inc.php. See tools/config.inc.php as an example.
[770]34 *
35 * Why having some parameters in config table and others in
36 * config_*.inc.php? Modifying config_*.inc.php is a "hard" task for low
37 * skilled users, they need a GUI for this : admin/configuration. But only
38 * parameters that might be modified by low skilled users are in config
39 * table, other parameters are in config_*.inc.php
40 */
41
[858]42// +-----------------------------------------------------------------------+
43// |                                 misc                                  |
44// +-----------------------------------------------------------------------+
45
[770]46// order_by : how to change the order of display for images in a category ?
47//
48// There are several fields that can order the display :
49//
50//  - date_available : the date of the adding to the gallery
51//  - file : the name of the file
52//  - id : element identifier
53//  - date_creation : date of element creation
54//
55// Once you've chosen which field(s) to use for ordering, you must chose the
56// ascending or descending order for each field.  examples :
57//
58// 1. $conf['order_by'] = " order by date_available desc, file asc";
59//    will order pictures by date_available descending & by filename ascending
60//
61// 2. $conf['order_by'] = " order by file asc";
62//    will only order pictures by file ascending without taking into account
63//    the date_available
64$conf['order_by'] = ' ORDER BY date_available DESC, file ASC, id ASC';
65
[2517]66// order_by_inside_category : inside a category, images can also be ordered
67// by rank. A manually defined rank on each image for the category.
68//
69// In addition to fields of #images table, you can use the
70// #image_category.rank column
71//
72// $conf['order_by_inside_category'] = ' ORDER BY rank';
73// will sort images by the manually defined rank of images in this category.
74$conf['order_by_inside_category'] = $conf['order_by'];
75
[770]76// file_ext : file extensions (case sensitive) authorized
[1635]77$conf['file_ext'] = array('jpg','JPG','jpeg','JPEG',
78                          'png','PNG','gif','GIF','mpg','zip',
[770]79                          'avi','mp3','ogg');
80
81// picture_ext : file extensions for picture file, must be a subset of
82// file_ext
[1635]83$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG',
84                             'png','PNG','gif','GIF');
[770]85
86// top_number : number of element to display for "best rated" and "most
87// visited" categories
88$conf['top_number'] = 15;
89
90// anti-flood_time : number of seconds between 2 comments : 0 to disable
91$conf['anti-flood_time'] = 60;
92
[1610]93// qualified spam comments are not registered (false will register them
94// but they will require admin validation)
95$conf['comment_spam_reject'] = true;
96
97// maximum number of links in a comment before it is qualified spam
98$conf['comment_spam_max_links'] = 3;
99
[858]100// calendar_datefield : date field of table "images" used for calendar
101// catgory
102$conf['calendar_datefield'] = 'date_creation';
103
[1057]104// calendar_show_any : the calendar shows an aditional 'any' button in the
105// year/month/week/day navigation bars
106$conf['calendar_show_any'] = true;
107
[1059]108// calendar_show_empty : the calendar shows month/weeks/days even if there are
109//no elements for these
110$conf['calendar_show_empty'] = true;
111
[1061]112// calendar_month_cell_width, calendar_month_cell_height : define the
113// width and the height of a cell in the monthly calendar when viewing a
114// given month. a value of 0 means that the pretty view is not shown.
115// a good suggestion would be to have the width and the height equal
[1837]116// and smaller than tn_width and tn_height.
[1061]117$conf['calendar_month_cell_width'] =80;
118$conf['calendar_month_cell_height']=80;
119
[858]120// newcat_default_commentable : at creation, must a category be commentable
121// or not ?
[1278]122$conf['newcat_default_commentable'] = true;
[858]123
124// newcat_default_uploadable : at creation, must a category be uploadable or
125// not ?
[1278]126$conf['newcat_default_uploadable'] = false;
[858]127
128// newcat_default_visible : at creation, must a category be visible or not ?
129// Warning : if the parent category is invisible, the category is
130// automatically create invisible. (invisible = locked)
[1278]131$conf['newcat_default_visible'] = true;
[858]132
133// newcat_default_status : at creation, must a category be public or private
134// ? Warning : if the parent category is private, the category is
135// automatically create private.
136$conf['newcat_default_status'] = 'public';
137
138// level_separator : character string used for separating a category level
139// to the sub level. Suggestions : ' / ', ' &raquo; ', ' &rarr; ', ' - ',
140// ' &gt;'
141$conf['level_separator'] = ' / ';
142
143// paginate_pages_around : on paginate navigation bar, how many pages
144// display before and after the current page ?
145$conf['paginate_pages_around'] = 2;
146
147// tn_width : default width for thumbnails creation
148$conf['tn_width'] = 128;
149
150// tn_height : default height for thumbnails creation
[937]151$conf['tn_height'] = 128;
[858]152
[3271]153// tn_compression_level: compression level for thumbnail creation. 0 is low
154// quality, 100 is high quality.
155$conf['tn_compression_level'] = 75;
156
[2339]157// show_version : shall the version of Piwigo be displayed at the
[858]158// bottom of each page ?
159$conf['show_version'] = true;
160
[3041]161// meta_ref to reference multiple sets of incorporated pages or elements
162// Set it false to avoid referencing in google, and other search engines.
163$conf['meta_ref'] = true;
[1763]164
[858]165// links : list of external links to add in the menu. An example is the best
166// than a long explanation :
167//
[1728]168// Simple use:
169//  for each link is associated a label
170//  $conf['links'] = array(
[2339]171//    'http://piwigo.org' => 'PWG website',
[3133]172//    'http://piwigo.org/forum' => 'PWG forum',
[1728]173//    );
[858]174//
[1728]175// Advenced use:
[2084]176//  You can also used special options. Instead to pass a string like parameter value
[1728]177//  you can pass a array with different optional parameter values
178//  $conf['links'] = array(
[2339]179//    'http://piwigo.org' => array('label' => 'PWG website', 'new_window' => false, 'eval_visible' => 'return true;'),
[3133]180//    'http://piwigo.org/forum' => array('label' => 'For ADMIN', 'new_window' => true, 'eval_visible' => 'return is_admin();'),
181//    'http://piwigo.org/ext' => array('label' => 'For Guest', 'new_window' => true, 'eval_visible' => 'return is_a_guest();'),
182//    'http://piwigo.org/downloads' =>
[2084]183//      array('label' => 'PopUp', 'new_window' => true,
[1743]184//      'nw_name' => 'PopUp', 'nw_features' => 'width=800,height=450,location=no,status=no,toolbar=no,scrollbars=no,menubar=no'),
[1728]185//    );
[1736]186// Parameters:
187//  'label':
188//    Label to display for the link, must be defined
189//  'new_window':
190//    If true open link on tab/window
191//    [Default value is true if it's not defined]
[1743]192//  'nw_name':
193//    Name use when new_window is true
194//    [Default value is '' if it's not defined]
195//  'nw_features':
196//    features use when new_window is true
197//    [Default value is '' if it's not defined]
[1736]198//  'eval_visible':
199//    It's php code witch must return if the link is visible or not
200//    [Default value is true if it's not defined]
201//
[1728]202// Equivalence:
203//  $conf['links'] = array(
[2339]204//    'http://piwigo.org' => 'PWG website',
[1728]205//    );
206//  $conf['links'] = array(
[2339]207//    'http://piwigo.org' => array('label' => 'PWG website', 'new_window' => false, 'visible' => 'return true;'),
[1728]208//    );
209//
[858]210// If the array is empty, the "Links" box won't be displayed on the main
211// page.
212$conf['links'] = array();
213
[1788]214// random_index_redirect: list of 'internal' links to use when no section is defined on index.php.
215// An example is the best than a long explanation :
216//
217//  for each link is associated a php condition
218//  '' condition is equivalent to 'return true;'
219//  $conf['random_index_redirect'] = array(
220//    PHPWG_ROOT_PATH.'index.php?/best_rated' => 'return true;',
[2029]221//    PHPWG_ROOT_PATH.'index.php?/recent_pics' => 'return is_a_guest();',
[1788]222//    PHPWG_ROOT_PATH.'random.php' => '',
223//    PHPWG_ROOT_PATH.'index.php?/categories' => '',
224//    );
225$conf['random_index_redirect'] = array();
226
[3095]227// reverse_home_title: if Piwigo is your home page for a better robot index
228// we recommend to set it true (Only index page will reverse its title)
229$conf['reverse_home_title'] = false;
230
[1677]231// List of notes to display on all header page
232// example $conf['header_notes']  = array('Test', 'Hello');
233$conf['header_notes']  = array();
234
[858]235// show_thumbnail_caption : on thumbnails page, show thumbnail captions ?
236$conf['show_thumbnail_caption'] = true;
237
238// show_picture_name_on_title : on picture presentation page, show picture
239// name ?
240$conf['show_picture_name_on_title'] = true;
241
[2803]242// display_fromto: display the date creation bounds of a
[1970]243// category.
244$conf['display_fromto'] = false;
245
[2339]246// allow_random_representative : do you wish Piwigo to search among
[858]247// categories elements a new representative at each reload ?
248//
249// If false, an element is randomly or manually chosen to represent its
250// category and remains the representative as long as an admin does not
251// change it.
252//
253// Warning : setting this parameter to true is CPU consuming. Each time you
254// change the value of this parameter from false to true, an administrator
255// must update categories informations in screen [Admin > General >
256// Maintenance].
257$conf['allow_random_representative'] = false;
258
259// allow_html_descriptions : authorize administrators to use HTML in
260// category and element description.
261$conf['allow_html_descriptions'] = true;
262
[862]263// prefix_thumbnail : string before filename. Thumbnail's prefix must only
264// contain characters among : a to z (case insensitive), "-" or "_".
[858]265$conf['prefix_thumbnail'] = 'TN-';
266
[3720]267// dir_thumbnail : directory where thumbnail reside.
268$conf['dir_thumbnail'] = 'thumbnail';
269
[880]270// users_page: how many users to display in screen
271// Administration>Identification>Users?
272$conf['users_page'] = 20;
273
[2084]274// image level permissions available in the admin interface
275$conf['available_permission_levels'] = array(0,1,2,4,8);
276
[901]277// mail_options: only set it true if you have a send mail warning with
278// "options" parameter missing on mail() function execution.
279$conf['mail_options'] = false;
280
[1021]281// send_bcc_mail_webmaster: send bcc mail to webmaster. Set true for debug
282// or test.
[1018]283$conf['send_bcc_mail_webmaster'] = false;
284
[1642]285// default_email_format:
286//  Define the default email format use to send email
287//  Value could be text/plain  or text/html
[1905]288$conf['default_email_format'] = 'text/html';
[1642]289
[3938]290// alternative_email_format:
291//  Define the alternative email format use to send email
292//  Value could be text/plain  or text/html
293$conf['alternative_email_format'] = 'text/plain';
294
[2284]295// define the name of sender mail:
296// If value is empty, gallery title is used
297$conf['mail_sender_name'] = '';
298
[2106]299// smtp configuration
300// (work if fsockopen function is allowed for smtp port)
301// smtp_host: smtp server host
302//  if null, regular mail function is used
303//   format: hoststring[:port]
304//   exemple: smtp.pwg.net:21
305// smtp_user/smtp_password: user & password for smtp identication
306$conf['smtp_host'] = '';
307$conf['smtp_user'] = '';
308$conf['smtp_password'] = '';
309
310
[953]311// check_upgrade_feed: check if there are database upgrade required. Set to
312// true, a message will strongly encourage you to upgrade your database if
313// needed.
314//
315// This configuration parameter is set to true in BSF branch and to false
316// elsewhere.
317$conf['check_upgrade_feed'] = true;
318
[1084]319// rate_items: available rates for a picture
320$conf['rate_items'] = array(0,1,2,3,4,5);
321
[1649]322// Define default method to use ('http' or 'html' in order to do redirect)
323$conf['default_redirect_method'] = 'http';
324
[3935]325// Define using double password type in admin's users management panel
326$conf['double_password_type_in_admin'] = false;
327
[4429]328// Define if logins must be case sentitive or not at users registration. ie :
329// If set true, the login "user" will equal "User" or "USER" or "user",
330// etc. ... And it will be impossible to use such login variation to create a
331// new user account.
[5060]332$conf['insensitive_case_logon'] = false;
[4429]333
[4954]334// how should we check for unicity when adding a photo. Can be 'md5sum' or
335// 'filename'
336$conf['uniqueness_mode'] = 'md5sum';
337
[5441]338// home_page : relative url of the homepage. Empty by default.
339// It points to the index of the gallery.
340// This parameter is used if home page is not index.php of the gallery.
[5470]341// We suggest avoid the names "index.htm" or "index.html" if you set $conf['php_extension_in_urls'] to false.
[5441]342$conf['home_page'] = '';
343
[858]344// +-----------------------------------------------------------------------+
345// |                               metadata                                |
346// +-----------------------------------------------------------------------+
347
348// show_iptc: Show IPTC metadata on picture.php if asked by user
349$conf['show_iptc'] = false;
350
[770]351// show_iptc_mapping : is used for showing IPTC metadata on picture.php
352// page. For each key of the array, you need to have the same key in the
353// $lang array. For example, if my first key is 'iptc_keywords' (associated
354// to '2#025') then you need to have $lang['iptc_keywords'] set in
355// language/$user['language']/common.lang.php. If you don't have the lang
356// var set, the key will be simply displayed
357//
358// To know how to associated iptc_field with their meaning, use
359// tools/metadata.php
360$conf['show_iptc_mapping'] = array(
361  'iptc_keywords'        => '2#025',
362  'iptc_caption_writer'  => '2#122',
363  'iptc_byline_title'    => '2#085',
364  'iptc_caption'         => '2#120'
365  );
366
[858]367// use_iptc: Use IPTC data during database synchronization with files
368// metadata
369$conf['use_iptc'] = false;
370
[2339]371// use_iptc_mapping : in which IPTC fields will Piwigo find image
[770]372// information ? This setting is used during metadata synchronisation. It
[2339]373// associates a piwigo_images column name to a IPTC key
[770]374$conf['use_iptc_mapping'] = array(
375  'keywords'        => '2#025',
376  'date_creation'   => '2#055',
377  'author'          => '2#122',
378  'name'            => '2#005',
379  'comment'         => '2#120'
380  );
381
[858]382// show_exif: Show EXIF metadata on picture.php (table or line presentation
383// avalaible)
384$conf['show_exif'] = true;
385
[770]386// show_exif_fields : in EXIF fields, you can choose to display fields in
387// sub-arrays, for example ['COMPUTED']['ApertureFNumber']. for this, add
388// 'COMPUTED;ApertureFNumber' in $conf['show_exif_fields']
389//
390// The key displayed in picture.php will be $lang['exif_field_Make'] for
391// example and if it exists. For compound fields, only take into account the
392// last part : for key 'COMPUTED;ApertureFNumber', you need
393// $lang['exif_field_ApertureFNumber']
394//
395// for PHP version newer than 4.1.2 :
396// $conf['show_exif_fields'] = array('CameraMake','CameraModel','DateTime');
[1059]397//
[858]398$conf['show_exif_fields'] = array(
399  'Make',
400  'Model',
401  'DateTimeOriginal',
402  'COMPUTED;ApertureFNumber'
403  );
[770]404
[858]405// use_exif: Use EXIF data during database synchronization with files
406// metadata
[1682]407$conf['use_exif'] = true;
[770]408
[858]409// use_exif_mapping: same behaviour as use_iptc_mapping
410$conf['use_exif_mapping'] = array(
411  'date_creation' => 'DateTimeOriginal'
412  );
[770]413
[858]414// +-----------------------------------------------------------------------+
415// |                               sessions                                |
416// +-----------------------------------------------------------------------+
417
[1059]418// session_use_cookies: specifies to use cookie to store
[1007]419// the session id on client side
420$conf['session_use_cookies'] = true;
[1004]421
[1059]422// session_use_only_cookies: specifies to only use cookie to store
[1007]423// the session id on client side
424$conf['session_use_only_cookies'] = true;
[1004]425
[1007]426// session_use_trans_sid: do not use transparent session id support
427$conf['session_use_trans_sid'] = false;
[1004]428
[1007]429// session_name: specifies the name of the session which is used as cookie name
[1004]430$conf['session_name'] = 'pwg_id';
431
[1059]432// session_save_handler: comment the line below
[1007]433// to use file handler for sessions.
[1004]434$conf['session_save_handler'] = 'db';
435
[858]436// authorize_remembering : permits user to stay logged for a long time. It
437// creates a cookie on client side.
438$conf['authorize_remembering'] = true;
439
[1493]440// remember_me_name: specifies the name of the cookie used to stay logged
441$conf['remember_me_name'] = 'pwg_remember';
442
[770]443// remember_me_length : time of validity for "remember me" cookies, in
444// seconds.
[1568]445$conf['remember_me_length'] = 5184000;
[770]446
[1568]447// session_length : time of validity for normal session, in seconds.
448$conf['session_length'] = 3600;
449
[858]450// +-----------------------------------------------------------------------+
[2790]451// |                            debug/performance                          |
[858]452// +-----------------------------------------------------------------------+
[770]453
454// show_queries : for debug purpose, show queries and execution times
455$conf['show_queries'] = false;
456
457// show_gt : display generation time at the bottom of each page
458$conf['show_gt'] = true;
459
[858]460// debug_l10n : display a warning message each time an unset language key is
461// accessed
462$conf['debug_l10n'] = false;
[770]463
[2216]464// activate template debugging - a new window will appear
465$conf['debug_template'] = false;
466
[1221]467// die_on_sql_error: if an SQL query fails, should everything stop?
468$conf['die_on_sql_error'] = true;
469
[2790]470// if true, some language strings are replaced during template compilation
471// (insted of template output). this results in better performance. however
472// any change in the language file will not be propagated until you purge
473// the compiled templates from the admin / maintenance menu
474$conf['compiled_template_cache_language'] = false;
475
476// This tells Smarty whether to check for recompiling or not. Recompiling
477// does not need to happen unless a template is changed. false results in
478// better performance.
479$conf['template_compile_check'] = true;
480
[5208]481// This forces Smarty to (re)compile templates on every invocation. This is
482// handy for development and debugging. It should never be used in a
483// production environment.
484$conf['template_force_compile'] = false;
485
[2859]486// this permit to show the php errors reporting (see INI 'error_reporting'
487// for possible values)
488// gives an empty value '' to deactivate
489$conf['show_php_errors'] = E_ALL;
490
[858]491// +-----------------------------------------------------------------------+
492// |                            authentication                             |
493// +-----------------------------------------------------------------------+
[770]494
[804]495// apache_authentication : use Apache authentication as reference instead of
496// users table ?
497$conf['apache_authentication'] = false;
[808]498
[2104]499// users_table: which table is the reference for users? Can be a different
[2339]500// table than Piwigo table
[865]501//
502// If you decide to use another table than the default one, you need to
503// prepare your database by deleting some datas :
504//
[2339]505// delete from piwigo_user_access;
506// delete from piwigo_user_cache;
507// delete from piwigo_user_feed;
508// delete from piwigo_user_group;
509// delete from piwigo_user_infos;
510// delete from piwigo_sessions;
511// delete from piwigo_rate;
512// update piwigo_images set average_rate = null;
513// delete from piwigo_caddie;
514// delete from piwigo_favorites;
[865]515//
516// All informations contained in these tables and column are related to
[2339]517// piwigo_users table.
[4357]518$conf['users_table'] = $prefixeTable.'users';
[808]519
[2104]520// Other tables can be changed, if you define associated constants
521// Example:
522//   define('USER_INFOS_TABLE', 'pwg_main'.'user_infos');
[2096]523
[808]524// user_fields : mapping between generic field names and table specific
525// field names. For example, in PWG, the mail address is names
526// "mail_address" and in punbb, it's called "email".
527$conf['user_fields'] = array(
528  'id' => 'id',
529  'username' => 'username',
530  'password' => 'password',
531  'email' => 'mail_address'
532  );
533
534// pass_convert : function to crypt or hash the clear user password to store
535// it in the database
536$conf['pass_convert'] = create_function('$s', 'return md5($s);');
537
538// guest_id : id of the anonymous user
539$conf['guest_id'] = 2;
[1926]540// default_user_id : id of user used for default value
541$conf['default_user_id'] = $conf['guest_id'];
[809]542
[2371]543// Registering process and guest/generic members get language from the browser
544// if language isn't available PHPWG_DEFAULT_LANGUAGE is used as previously
545$conf['browser_language'] = true;
546
[858]547// webmaster_id : webmaster'id.
548$conf['webmaster_id'] = 1;
[825]549
[1087]550// allow to use adviser mode
551$conf['allow_adviser'] = false;
552
[1470]553// does the guest have access ?
554// (not a security feature, set your categories "private" too)
555// If false it'll be redirected from index.php to identification.php
556$conf['guest_access'] = true;
557
[858]558// +-----------------------------------------------------------------------+
559// |                                upload                                 |
560// +-----------------------------------------------------------------------+
[833]561
[858]562// upload_maxfilesize: maximum filesize for the uploaded pictures. In
563// kilobytes.
564$conf['upload_maxfilesize'] = 200;
[833]565
[858]566// upload_maxheight: maximum height authorized for the uploaded images. In
567// pixels.
568$conf['upload_maxheight'] = 800;
[850]569
[858]570// upload_maxwidth: maximum width authorized for the uploaded images. In
[900]571// pixels.
[858]572$conf['upload_maxwidth'] = 800;
[850]573
[858]574// upload_maxheight_thumbnail: maximum height authorized for the uploaded
575// thumbnails
[1848]576$conf['upload_maxheight_thumbnail'] = 128;
[858]577
578// upload_maxwidth_thumbnail: maximum width authorized for the uploaded
579// thumbnails
[1848]580$conf['upload_maxwidth_thumbnail'] = 128;
[894]581
582// +-----------------------------------------------------------------------+
[901]583// |                               history                                 |
[894]584// +-----------------------------------------------------------------------+
585
586// nb_logs_page :  how many logs to display on a page
587$conf['nb_logs_page'] = 300;
588
[1094]589// +-----------------------------------------------------------------------+
590// |                                 urls                                  |
591// +-----------------------------------------------------------------------+
592
593// question_mark_in_urls : the generated urls contain a ? sign. This can be
594// changed to false only if the server translates PATH_INFO variable
595// (depends on the server AcceptPathInfo directive configuration)
596$conf['question_mark_in_urls'] = true;
597
598// php_extension_in_urls : if true, the urls generated for picture and
599// category will not contain the .php extension. This will work only if
600// .htaccess defines Options +MultiViews parameter or url rewriting rules
601// are active.
602$conf['php_extension_in_urls'] = true;
603
[1131]604// category_url_style : one of 'id' (default) or 'id-name'. 'id-name'
605// means that an simplified ascii represntation of the category name will
606// appear in the url
607$conf['category_url_style'] = 'id';
608
609// picture_url_style : one of 'id' (default), 'id-file' or 'file'. 'id-file'
610// or 'file' mean that the file name (without extension will appear in the
611// url). Note that one aditionnal sql query will occur if 'file' is choosen.
612// Note that you might experience navigation issues if you choose 'file'
613// and your file names are not unique
614$conf['picture_url_style'] = 'id';
615
616// tag_url_style : one of 'id-tag' (default), 'id' or 'tag'.
617// Note that if you choose 'tag' and the url (ascii) representation of your
618// tags is not unique, all tags with the same url representation will be shown
619$conf['tag_url_style'] = 'id-tag';
620
[1116]621// +-----------------------------------------------------------------------+
[1119]622// |                                 tags                                  |
623// +-----------------------------------------------------------------------+
624
625// full_tag_cloud_items_number: number of tags to show in the full tag
626// cloud. Only the most represented tags will be shown
627$conf['full_tag_cloud_items_number'] = 200;
628
[1537]629// menubar_tag_cloud_items_number: number of tags to show in the tag
630// cloud in the menubar. Only the most represented tags will be shown
631$conf['menubar_tag_cloud_items_number'] = 100;
632
633// content_tag_cloud_items_number: number of tags to show in the tag
634// cloud on the content page. Only the most represented tags will be shown
635$conf['content_tag_cloud_items_number'] = 12;
636
[1119]637// tags_levels: number of levels to use for display. Each level is bind to a
638// CSS class tagLevelX.
[1120]639$conf['tags_levels'] = 5;
[1119]640
[2362]641// tags_default_display_mode: group tags by letter or display a tag cloud by
642// default? 'letters' or 'cloud'.
643$conf['tags_default_display_mode'] = 'cloud';
644
645// tag_letters_column_number: how many columns to display tags by letter
646$conf['tag_letters_column_number'] = 4;
647
[1119]648// +-----------------------------------------------------------------------+
[1116]649// | Notification by mail                                                  |
650// +-----------------------------------------------------------------------+
651
652// Default Value for nbm user
653$conf['nbm_default_value_user_enabled'] = false;
654
[1531]655// Search list user to send quickly (List all without to check news)
[1116]656// More quickly but less fun to use
657$conf['nbm_list_all_enabled_users_to_send'] = false;
658
[1531]659// Max time used on one pass in order to send mails.
660// Timeout delay ratio.
[1156]661$conf['nbm_max_treatment_timeout_percent'] = 0.8;
662
[1531]663// If timeout cannot be compite with nbm_max_treatment_timeout_percent,
664// nbm_treatment_timeout_default is used by default
665$conf['nbm_treatment_timeout_default'] = 20;
666
[1871]667// Parameters used in get_recent_post_dates for the 2 kind of notification
668$conf['recent_post_dates'] = array(
669  'RSS' => array('max_dates' => 5, 'max_elements' => 6, 'max_cats' => 6),
670  'NBM' => array('max_dates' => 7, 'max_elements' => 3, 'max_cats' => 9)
671  );
672
[2595]673// the author shown in the RSS feed <author> element
674$conf['rss_feed_author'] = 'Piwigo notifier';
675
[1377]676// +-----------------------------------------------------------------------+
[2313]677// | Set admin layout                                                      |
[1377]678// +-----------------------------------------------------------------------+
679
[5123]680$conf['admin_theme'] = 'roma';
[1377]681
[1616]682// should we load the active plugins ? true=Yes, false=No
683$conf['enable_plugins']=true;
[1660]684
[1781]685// Web services are allowed (true) or completely forbidden (false)
686$conf['allow_web_services'] = true;
687
[3662]688// enable log for web services
689$conf['ws_enable_log'] = false;
690
691// web services log file path
692$conf['ws_log_filepath'] = '/tmp/piwigo_ws.log';
693
[1781]694// Maximum number of images to be returned foreach call to the web service
695$conf['ws_max_images_per_page'] = 500;
696
[3382]697// Display a link to subscribe to Piwigo Announcements Newsletter
698$conf['show_newsletter_subscription'] = true;
699
[1677]700// +-----------------------------------------------------------------------+
701// | Filter                                                                |
702// +-----------------------------------------------------------------------+
[1722]703// $conf['filter_pages'] contains configuration for each pages
704//   o If values are not defined for a specific page, default value are used
705//   o Array is composed by the basename of each page without extention
706//   o List of value names:
707//     - used: filter function are used
708//       (if false nothing is done [start, cancel, stop, ...]
709//     - cancel: cancel current started filter
710//     - add_notes: add notes about current started filter on the header
711//   o Empty configuration in order to disable completely filter functions
712//     No filter, No icon,...
713//     $conf['filter_pages'] = array();
[1677]714$conf['filter_pages'] = array
715  (
[1722]716    // Default page
717    'default' => array(
718      'used' => true, 'cancel' => false, 'add_notes' => false),
719    // Real pages
720    'index' => array('add_notes' => true),
721    'tags' => array('add_notes' => true),
722    'search' => array('add_notes' => true),
723    'comments' => array('add_notes' => true),
724    'admin' => array('used' => false),
725    'feed' => array('used' => false),
726    'notification' => array('used' => false),
727    'nbm' => array('used' => false),
728    'popuphelp' => array('used' => false),
729    'profile' => array('used' => false),
730    'ws' => array('used' => false),
731    'identification' => array('cancel' => true),
732    'install' => array('cancel' => true),
733    'password' => array('cancel' => true),
734    'register' => array('cancel' => true),
[1677]735  );
736
[1730]737// +-----------------------------------------------------------------------+
[2218]738// | Slideshow                                                             |
[1730]739// +-----------------------------------------------------------------------+
[2218]740// slideshow_period : waiting time in seconds before loading a new page
741// during automated slideshow
742// slideshow_period_min, slideshow_period_max are bounds of slideshow_period
743// slideshow_period_step is the step of navigation between min and max
744$conf['slideshow_period_min'] = 1;
745$conf['slideshow_period_max'] = 10;
746$conf['slideshow_period_step'] = 1;
747$conf['slideshow_period'] = 4;
748
749// slideshow_repeat : slideshow loops on pictures
750$conf['slideshow_repeat'] = true;
751
[2084]752// $conf['light_slideshow'] indicates to use slideshow.tpl in state of
[1730]753// picture.tpl for slideshow
754// Take care to have slideshow.tpl in all available templates
755// Or set it false.
756// Check if Picture's plugins are compliant with it
757// Every plugin from 1.7 would be design to manage light_slideshow case.
[2084]758$conf['light_slideshow'] = true;
[1730]759
[2216]760// the local data directory is used to store data such as compiled templates
761// or other plugin variables etc
762$conf['local_data_dir'] = dirname(dirname(__FILE__)).'/_data';
[5014]763
[6052]764// where should the API/UploadForm add photos? This path must be relative to
765// the Piwigo installation directory (but can be outside, as long as it's
766// reachable from your webserver).
767$conf['upload_dir'] = './upload';
[5138]768
769// where should the user be guided when there is no photo in his gallery yet?
770$conf['no_photo_yet_url'] = 'admin.php?page=photos_add';
[5153]771
772// directory with themes inside
773$conf['themes_dir'] = PHPWG_ROOT_PATH.'themes';
[5182]774
775// pLoader direct download url for windows
776$conf['ploader_download_windows'] = 'http://piwigo.org/ext/download.php?eid=270';
777
778// pLoader direct download url for mac
779$conf['ploader_download_mac'] = 'http://piwigo.org/ext/download.php?eid=353';
780
781// pLoader direct download url for linux
782$conf['ploader_download_linux'] = 'http://piwigo.org/ext/download.php?eid=269';
[4954]783?>
Note: See TracBrowser for help on using the repository browser.