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

Last change on this file since 31157 was 31157, checked in by rvelices, 9 years ago

?> at end of php (even if not required)

  • Property svn:eol-style set to LF
File size: 33.0 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2014 Piwigo Team                  http://piwigo.org |
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// +-----------------------------------------------------------------------+
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
33 * local/config/config.inc.php. See tools/config.inc.php as an example.
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
42// +-----------------------------------------------------------------------+
43// |                                 misc                                  |
44// +-----------------------------------------------------------------------+
45
46// order_by_custom and order_by_inside_category_custom : for non common pattern
47// you can define special ORDER configuration
48//
49// $conf['order_by_custom'] = ' ORDER BY date_available DESC, file ASC, id ASC';
50
51// order_by_inside_category : inside a category, images can also be ordered
52// by rank. A manually defined rank on each image for the category.
53//
54// $conf['order_by_inside_category_custom'] = $conf['order_by_custom'];
55
56// picture_ext : file extensions for picture file, must be a subset of
57// file_ext
58$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG','png','PNG','gif','GIF');
59
60// file_ext : file extensions (case sensitive) authorized
61$conf['file_ext'] = array_merge(
62  $conf['picture_ext'],
63  array('tiff', 'tif', 'mpg','zip','avi','mp3','ogg','pdf')
64  );
65
66// top_number : number of element to display for "best rated" and "most
67// visited" categories
68$conf['top_number'] = 15;
69
70// anti-flood_time : number of seconds between 2 comments : 0 to disable
71$conf['anti-flood_time'] = 60;
72
73// qualified spam comments are not registered (false will register them
74// but they will require admin validation)
75$conf['comment_spam_reject'] = true;
76
77// maximum number of links in a comment before it is qualified spam
78$conf['comment_spam_max_links'] = 3;
79
80// calendar_datefield : date field of table "images" used for calendar
81// catgory
82$conf['calendar_datefield'] = 'date_creation';
83
84// calendar_show_any : the calendar shows an aditional 'any' button in the
85// year/month/week/day navigation bars
86$conf['calendar_show_any'] = true;
87
88// calendar_show_empty : the calendar shows month/weeks/days even if there are
89//no elements for these
90$conf['calendar_show_empty'] = true;
91
92// newcat_default_commentable : at creation, must a category be commentable
93// or not ?
94$conf['newcat_default_commentable'] = true;
95
96// newcat_default_visible : at creation, must a category be visible or not ?
97// Warning : if the parent category is invisible, the category is
98// automatically create invisible. (invisible = locked)
99$conf['newcat_default_visible'] = true;
100
101// newcat_default_status : at creation, must a category be public or private
102// ? Warning : if the parent category is private, the category is
103// automatically create private.
104$conf['newcat_default_status'] = 'public';
105
106// level_separator : character string used for separating a category level
107// to the sub level. Suggestions : ' / ', ' &raquo; ', ' &rarr; ', ' - ',
108// ' &gt;'
109$conf['level_separator'] = ' / ';
110
111// paginate_pages_around : on paginate navigation bar, how many pages
112// display before and after the current page ?
113$conf['paginate_pages_around'] = 2;
114
115// show_version : shall the version of Piwigo be displayed at the
116// bottom of each page ?
117$conf['show_version'] = true;
118
119// meta_ref to reference multiple sets of incorporated pages or elements
120// Set it false to avoid referencing in google, and other search engines.
121$conf['meta_ref'] = true;
122
123// links : list of external links to add in the menu. An example is the best
124// than a long explanation :
125//
126// Simple use:
127//  for each link is associated a label
128//  $conf['links'] = array(
129//    'http://piwigo.org' => 'PWG website',
130//    'http://piwigo.org/forum' => 'PWG forum',
131//    );
132//
133// Advenced use:
134//  You can also used special options. Instead to pass a string like parameter value
135//  you can pass a array with different optional parameter values
136//  $conf['links'] = array(
137//    'http://piwigo.org' => array('label' => 'PWG website', 'new_window' => false, 'eval_visible' => 'return true;'),
138//    'http://piwigo.org/forum' => array('label' => 'For ADMIN', 'new_window' => true, 'eval_visible' => 'return is_admin();'),
139//    'http://piwigo.org/ext' => array('label' => 'For Guest', 'new_window' => true, 'eval_visible' => 'return is_a_guest();'),
140//    'http://piwigo.org/downloads' =>
141//      array('label' => 'PopUp', 'new_window' => true,
142//      'nw_name' => 'PopUp', 'nw_features' => 'width=800,height=450,location=no,status=no,toolbar=no,scrollbars=no,menubar=no'),
143//    );
144// Parameters:
145//  'label':
146//    Label to display for the link, must be defined
147//  'new_window':
148//    If true open link on tab/window
149//    [Default value is true if it's not defined]
150//  'nw_name':
151//    Name use when new_window is true
152//    [Default value is '' if it's not defined]
153//  'nw_features':
154//    features use when new_window is true
155//    [Default value is '' if it's not defined]
156//  'eval_visible':
157//    It's php code witch must return if the link is visible or not
158//    [Default value is true if it's not defined]
159//
160// Equivalence:
161//  $conf['links'] = array(
162//    'http://piwigo.org' => 'PWG website',
163//    );
164//  $conf['links'] = array(
165//    'http://piwigo.org' => array('label' => 'PWG website', 'new_window' => false, 'visible' => 'return true;'),
166//    );
167//
168// If the array is empty, the "Links" box won't be displayed on the main
169// page.
170$conf['links'] = array();
171
172// random_index_redirect: list of 'internal' links to use when no section is defined on index.php.
173// An example is the best than a long explanation :
174//
175//  for each link is associated a php condition
176//  '' condition is equivalent to 'return true;'
177//  $conf['random_index_redirect'] = array(
178//    PHPWG_ROOT_PATH.'index.php?/best_rated' => 'return true;',
179//    PHPWG_ROOT_PATH.'index.php?/recent_pics' => 'return is_a_guest();',
180//    PHPWG_ROOT_PATH.'random.php' => '',
181//    PHPWG_ROOT_PATH.'index.php?/categories' => '',
182//    );
183$conf['random_index_redirect'] = array();
184
185// List of notes to display on all header page
186// example $conf['header_notes']  = array('Test', 'Hello');
187$conf['header_notes']  = array();
188
189// show_thumbnail_caption : on thumbnails page, show thumbnail captions ?
190$conf['show_thumbnail_caption'] = true;
191
192// display_fromto: display the date creation bounds of a
193// category.
194$conf['display_fromto'] = false;
195
196// allow_random_representative : do you wish Piwigo to search among
197// categories elements a new representative at each reload ?
198//
199// If false, an element is randomly or manually chosen to represent its
200// category and remains the representative as long as an admin does not
201// change it.
202//
203// Warning : setting this parameter to true is CPU consuming. Each time you
204// change the value of this parameter from false to true, an administrator
205// must update categories informations in screen [Admin > General >
206// Maintenance].
207$conf['allow_random_representative'] = false;
208
209// representative_cache_on_level: if a thumbnail is chosen as representative
210// but has higher privacy level than current user, Piwigo randomly selects
211// another thumbnail. Should be store this thumbnail in cache to avoid
212// another consuming SQL query on next page refresh?
213$conf['representative_cache_on_level'] = true;
214
215// representative_cache_on_subcats: if a category (= album) only contains
216// sub-categories, Piwigo randomly selects a thumbnail among sub-categories
217// representative. Should we store this thumbnail in cache to avoid another
218// "slightly" consuming SQL query on next page refresh?
219$conf['representative_cache_on_subcats'] = true;
220
221// allow_html_descriptions : authorize administrators to use HTML in
222// category and element description.
223$conf['allow_html_descriptions'] = true;
224
225// image level permissions available in the admin interface
226$conf['available_permission_levels'] = array(0,1,2,4,8);
227
228// check_upgrade_feed: check if there are database upgrade required. Set to
229// true, a message will strongly encourage you to upgrade your database if
230// needed.
231//
232// This configuration parameter is set to true in BSF branch and to false
233// elsewhere.
234$conf['check_upgrade_feed'] = true;
235
236// rate_items: available rates for a picture
237$conf['rate_items'] = array(0,1,2,3,4,5);
238
239// Define default method to use ('http' or 'html' in order to do redirect)
240$conf['default_redirect_method'] = 'http';
241
242// Define using double password type in admin's users management panel
243$conf['double_password_type_in_admin'] = false;
244
245// Define if logins must be case sentitive or not at users registration. ie :
246// If set true, the login "user" will equal "User" or "USER" or "user",
247// etc. ... And it will be impossible to use such login variation to create a
248// new user account.
249$conf['insensitive_case_logon'] = false;
250
251// how should we check for unicity when adding a photo. Can be 'md5sum' or
252// 'filename'
253$conf['uniqueness_mode'] = 'md5sum';
254
255// Library used for image resizing. Value could be 'auto', 'imagick',
256// 'ext_imagick' or 'gd'. If value is 'auto', library will be choosen in this
257// order. If choosen library is not available, another one will be picked up.
258$conf['graphics_library'] = 'auto';
259
260// If library used is external installation of ImageMagick ('ext_imagick'),
261// you can define imagemagick directory.
262$conf['ext_imagick_dir'] = '';
263
264// how many user comments to display by default on comments.php. Use 'all'
265// to display all user comments without pagination. Default available values
266// are array(5,10,20,50,'all') but you can set any other numeric value.
267$conf['comments_page_nb_comments'] = 10;
268
269// +-----------------------------------------------------------------------+
270// |                                 email                                 |
271// +-----------------------------------------------------------------------+
272
273// send_bcc_mail_webmaster: send bcc mail to webmaster. Set true for debug
274// or test.
275$conf['send_bcc_mail_webmaster'] = false;
276
277// define the name of sender mail: if value is empty, gallery title is used
278$conf['mail_sender_name'] = '';
279
280// define the email of sender mail: if valie is empty, webmaster email is used
281$conf['mail_sender_email'] = '';
282
283// set true to allow text/html emails
284$conf['mail_allow_html'] = true;
285
286// smtp configuration (work if fsockopen function is allowed for smtp port)
287// smtp_host: smtp server host
288//  if null, regular mail function is used
289//   format: hoststring[:port]
290//   exemple: smtp.pwg.net:21
291// smtp_user/smtp_password: user & password for smtp identication
292$conf['smtp_host'] = '';
293$conf['smtp_user'] = '';
294$conf['smtp_password'] = '';
295
296// 'ssl' or 'tls'
297$conf['smtp_secure'] = null;
298
299// +-----------------------------------------------------------------------+
300// |                               metadata                                |
301// +-----------------------------------------------------------------------+
302
303// show_iptc: Show IPTC metadata on picture.php if asked by user
304$conf['show_iptc'] = false;
305
306// show_iptc_mapping : is used for showing IPTC metadata on picture.php
307// page. For each key of the array, you need to have the same key in the
308// $lang array. For example, if my first key is 'iptc_keywords' (associated
309// to '2#025') then you need to have $lang['iptc_keywords'] set in
310// language/$user['language']/common.lang.php. If you don't have the lang
311// var set, the key will be simply displayed
312//
313// To know how to associated iptc_field with their meaning, use
314// tools/metadata.php
315$conf['show_iptc_mapping'] = array(
316  'iptc_keywords'        => '2#025',
317  'iptc_caption_writer'  => '2#122',
318  'iptc_byline_title'    => '2#085',
319  'iptc_caption'         => '2#120'
320  );
321
322// use_iptc: Use IPTC data during database synchronization with files
323// metadata
324$conf['use_iptc'] = false;
325
326// use_iptc_mapping : in which IPTC fields will Piwigo find image
327// information ? This setting is used during metadata synchronisation. It
328// associates a piwigo_images column name to a IPTC key
329$conf['use_iptc_mapping'] = array(
330  'keywords'        => '2#025',
331  'date_creation'   => '2#055',
332  'author'          => '2#122',
333  'name'            => '2#005',
334  'comment'         => '2#120'
335  );
336
337// show_exif: Show EXIF metadata on picture.php (table or line presentation
338// avalaible)
339$conf['show_exif'] = true;
340
341// show_exif_fields : in EXIF fields, you can choose to display fields in
342// sub-arrays, for example ['COMPUTED']['ApertureFNumber']. for this, add
343// 'COMPUTED;ApertureFNumber' in $conf['show_exif_fields']
344//
345// The key displayed in picture.php will be $lang['exif_field_Make'] for
346// example and if it exists. For compound fields, only take into account the
347// last part : for key 'COMPUTED;ApertureFNumber', you need
348// $lang['exif_field_ApertureFNumber']
349//
350// for PHP version newer than 4.1.2 :
351// $conf['show_exif_fields'] = array('CameraMake','CameraModel','DateTime');
352//
353$conf['show_exif_fields'] = array(
354  'Make',
355  'Model',
356  'DateTimeOriginal',
357  'COMPUTED;ApertureFNumber'
358  );
359
360// use_exif: Use EXIF data during database synchronization with files
361// metadata
362$conf['use_exif'] = true;
363
364// use_exif_mapping: same behaviour as use_iptc_mapping
365$conf['use_exif_mapping'] = array(
366  'date_creation' => 'DateTimeOriginal'
367  );
368
369// allow_html_in_metadata: in case the origin of the photo is unsecure (user
370// upload), we remove HTML tags to avoid XSS (malicious execution of
371// javascript)
372$conf['allow_html_in_metadata'] = false;
373
374// decide which characters can be used as keyword separators (works in EXIF
375// and IPTC). Coma "," cannot be removed from this list.
376$conf['metadata_keyword_separator_regex'] = '/[.,;]/';
377
378// +-----------------------------------------------------------------------+
379// |                               sessions                                |
380// +-----------------------------------------------------------------------+
381
382// session_use_cookies: specifies to use cookie to store
383// the session id on client side
384$conf['session_use_cookies'] = true;
385
386// session_use_only_cookies: specifies to only use cookie to store
387// the session id on client side
388$conf['session_use_only_cookies'] = true;
389
390// session_use_trans_sid: do not use transparent session id support
391$conf['session_use_trans_sid'] = false;
392
393// session_name: specifies the name of the session which is used as cookie name
394$conf['session_name'] = 'pwg_id';
395
396// session_save_handler: comment the line below
397// to use file handler for sessions.
398$conf['session_save_handler'] = 'db';
399
400// authorize_remembering : permits user to stay logged for a long time. It
401// creates a cookie on client side.
402$conf['authorize_remembering'] = true;
403
404// remember_me_name: specifies the name of the cookie used to stay logged
405$conf['remember_me_name'] = 'pwg_remember';
406
407// remember_me_length : time of validity for "remember me" cookies, in
408// seconds.
409$conf['remember_me_length'] = 5184000;
410
411// session_length : time of validity for normal session, in seconds.
412$conf['session_length'] = 3600;
413
414// session_use_ip_address: avoid session hijacking by using a part of the IP
415// address
416$conf['session_use_ip_address'] = true;
417
418// +-----------------------------------------------------------------------+
419// |                            debug/performance                          |
420// +-----------------------------------------------------------------------+
421
422// show_queries : for debug purpose, show queries and execution times
423$conf['show_queries'] = false;
424
425// show_gt : display generation time at the bottom of each page
426$conf['show_gt'] = true;
427
428// debug_l10n : display a warning message each time an unset language key is
429// accessed
430$conf['debug_l10n'] = false;
431
432// activate template debugging - a new window will appear
433$conf['debug_template'] = false;
434
435// save copies of sent mails into local data dir
436$conf['debug_mail'] = false;
437
438// die_on_sql_error: if an SQL query fails, should everything stop?
439$conf['die_on_sql_error'] = true;
440
441// if true, some language strings are replaced during template compilation
442// (instead of template output). this results in better performance. however
443// any change in the language file will not be propagated until you purge
444// the compiled templates from the admin / maintenance menu
445$conf['compiled_template_cache_language'] = false;
446
447// This tells Smarty whether to check for recompiling or not. Recompiling
448// does not need to happen unless a template is changed. false results in
449// better performance.
450$conf['template_compile_check'] = true;
451
452// This forces Smarty to (re)compile templates on every invocation. This is
453// handy for development and debugging. It should never be used in a
454// production environment.
455$conf['template_force_compile'] = false;
456
457// activate merging of javascript / css files
458$conf['template_combine_files'] = true;
459
460// this permit to show the php errors reporting (see INI 'error_reporting'
461// for possible values)
462// gives an empty value '' to deactivate
463$conf['show_php_errors'] = E_ALL;
464
465
466// +-----------------------------------------------------------------------+
467// |                            authentication                             |
468// +-----------------------------------------------------------------------+
469
470// apache_authentication : use Apache authentication as reference instead of
471// users table ?
472$conf['apache_authentication'] = false;
473
474// users_table: which table is the reference for users? Can be a different
475// table than Piwigo table
476//
477// If you decide to use another table than the default one, you need to
478// prepare your database by deleting some datas :
479//
480// delete from piwigo_user_access;
481// delete from piwigo_user_cache;
482// delete from piwigo_user_feed;
483// delete from piwigo_user_group;
484// delete from piwigo_user_infos;
485// delete from piwigo_sessions;
486// delete from piwigo_rate;
487// update piwigo_images set rating_score = null, added_by = <webmaster_id>;
488// delete from piwigo_caddie;
489// delete from piwigo_favorites;
490//
491// All informations contained in these tables and column are related to
492// piwigo_users table.
493$conf['users_table'] = null;
494
495// If you decide to use external authentication
496// change conf below by $conf['external_authentification'] = true;
497$conf['external_authentification'] = false;
498
499// Other tables can be changed, if you define associated constants
500// Example:
501//   define('USER_INFOS_TABLE', 'pwg_main'.'user_infos');
502
503// user_fields : mapping between generic field names and table specific
504// field names. For example, in PWG, the mail address is names
505// "mail_address" and in punbb, it's called "email".
506$conf['user_fields'] = array(
507  'id' => 'id',
508  'username' => 'username',
509  'password' => 'password',
510  'email' => 'mail_address'
511  );
512
513// password_hash: function hash the clear user password to store it in the
514// database. The function takes only one parameter: the clear password.
515$conf['password_hash'] = 'pwg_password_hash';
516
517// password_verify: function that checks the password against its hash. The
518// function takes 2 mandatory parameter : clear password, hashed password +
519// an optional parameter user_id. The user_id is used to update the password
520// with the new hash introduced in Piwigo 2.5. See function
521// pwg_password_verify in include/functions_user.inc.php
522$conf['password_verify'] = 'pwg_password_verify';
523
524// guest_id : id of the anonymous user
525$conf['guest_id'] = 2;
526
527// default_user_id : id of user used for default value
528$conf['default_user_id'] = $conf['guest_id'];
529
530// Registering process and guest/generic members get language from the browser
531// if language isn't available PHPWG_DEFAULT_LANGUAGE is used as previously
532$conf['browser_language'] = true;
533
534// webmaster_id : webmaster'id.
535$conf['webmaster_id'] = 1;
536
537// does the guest have access ?
538// (not a security feature, set your categories "private" too)
539// If false it'll be redirected from index.php to identification.php
540$conf['guest_access'] = true;
541
542// +-----------------------------------------------------------------------+
543// |                               history                                 |
544// +-----------------------------------------------------------------------+
545
546// nb_logs_page :  how many logs to display on a page
547$conf['nb_logs_page'] = 300;
548
549// +-----------------------------------------------------------------------+
550// |                                 urls                                  |
551// +-----------------------------------------------------------------------+
552
553// gallery_url : you can set a specific URL for the home page of your
554// gallery. This is for very specific use and you don't need to change this
555// setting when move your gallery to a new directory or a new domain name.
556$conf['gallery_url'] = null;
557
558// question_mark_in_urls : the generated urls contain a ? sign. This can be
559// changed to false only if the server translates PATH_INFO variable
560// (depends on the server AcceptPathInfo directive configuration)
561$conf['question_mark_in_urls'] = true;
562
563// php_extension_in_urls : if true, the urls generated for picture and
564// category will not contain the .php extension. This will work only if
565// .htaccess defines Options +MultiViews parameter or url rewriting rules
566// are active.
567$conf['php_extension_in_urls'] = true;
568
569// category_url_style : one of 'id' (default) or 'id-name'. 'id-name'
570// means that an simplified ascii represntation of the category name will
571// appear in the url
572$conf['category_url_style'] = 'id';
573
574// picture_url_style : one of 'id' (default), 'id-file' or 'file'. 'id-file'
575// or 'file' mean that the file name (without extension will appear in the
576// url). Note that one aditionnal sql query will occur if 'file' is choosen.
577// Note that you might experience navigation issues if you choose 'file'
578// and your file names are not unique
579$conf['picture_url_style'] = 'id';
580
581// tag_url_style : one of 'id-tag' (default), 'id' or 'tag'.
582// Note that if you choose 'tag' and the url (ascii) representation of your
583// tags is not unique, all tags with the same url representation will be shown
584$conf['tag_url_style'] = 'id-tag';
585
586// +-----------------------------------------------------------------------+
587// |                                 tags                                  |
588// +-----------------------------------------------------------------------+
589
590// full_tag_cloud_items_number: number of tags to show in the full tag
591// cloud. Only the most represented tags will be shown
592$conf['full_tag_cloud_items_number'] = 200;
593
594// menubar_tag_cloud_items_number: number of tags to show in the tag
595// cloud in the menubar. Only the most represented tags will be shown
596$conf['menubar_tag_cloud_items_number'] = 20;
597
598// content_tag_cloud_items_number: number of related tags to show in the tag
599// cloud on the content page, when the current section is not a set of
600// tags. Only the most represented tags will be shown
601$conf['content_tag_cloud_items_number'] = 12;
602
603// tags_levels: number of levels to use for display. Each level is bind to a
604// CSS class tagLevelX.
605$conf['tags_levels'] = 5;
606
607// tags_default_display_mode: group tags by letter or display a tag cloud by
608// default? 'letters' or 'cloud'.
609$conf['tags_default_display_mode'] = 'cloud';
610
611// tag_letters_column_number: how many columns to display tags by letter
612$conf['tag_letters_column_number'] = 4;
613
614// +-----------------------------------------------------------------------+
615// | Notification by mail                                                  |
616// +-----------------------------------------------------------------------+
617
618// Default Value for nbm user
619$conf['nbm_default_value_user_enabled'] = false;
620
621// Search list user to send quickly (List all without to check news)
622// More quickly but less fun to use
623$conf['nbm_list_all_enabled_users_to_send'] = false;
624
625// Max time used on one pass in order to send mails.
626// Timeout delay ratio.
627$conf['nbm_max_treatment_timeout_percent'] = 0.8;
628
629// If timeout cannot be compite with nbm_max_treatment_timeout_percent,
630// nbm_treatment_timeout_default is used by default
631$conf['nbm_treatment_timeout_default'] = 20;
632
633// Parameters used in get_recent_post_dates for the 2 kind of notification
634$conf['recent_post_dates'] = array(
635  'RSS' => array('max_dates' => 5, 'max_elements' => 6, 'max_cats' => 6),
636  'NBM' => array('max_dates' => 7, 'max_elements' => 3, 'max_cats' => 9)
637  );
638
639// the author shown in the RSS feed <author> element
640$conf['rss_feed_author'] = 'Piwigo notifier';
641
642// +-----------------------------------------------------------------------+
643// | Set admin layout                                                      |
644// +-----------------------------------------------------------------------+
645
646$conf['admin_theme'] = 'clear';
647
648// should we load the active plugins ? true=Yes, false=No
649$conf['enable_plugins']=true;
650
651// Web services are allowed (true) or completely forbidden (false)
652$conf['allow_web_services'] = true;
653
654// Maximum number of images to be returned foreach call to the web service
655$conf['ws_max_images_per_page'] = 500;
656
657// Maximum number of users to be returned foreach call to the web service
658$conf['ws_max_users_per_page'] = 1000;
659
660// Display a link to subscribe to Piwigo Announcements Newsletter
661$conf['show_newsletter_subscription'] = true;
662
663// +-----------------------------------------------------------------------+
664// | Filter                                                                |
665// +-----------------------------------------------------------------------+
666// $conf['filter_pages'] contains configuration for each pages
667//   o If values are not defined for a specific page, default value are used
668//   o Array is composed by the basename of each page without extention
669//   o List of value names:
670//     - used: filter function are used
671//       (if false nothing is done [start, cancel, stop, ...]
672//     - cancel: cancel current started filter
673//     - add_notes: add notes about current started filter on the header
674//   o Empty configuration in order to disable completely filter functions
675//     No filter, No icon,...
676//     $conf['filter_pages'] = array();
677$conf['filter_pages'] = array
678  (
679    // Default page
680    'default' => array(
681      'used' => true, 'cancel' => false, 'add_notes' => false),
682    // Real pages
683    'index' => array('add_notes' => true),
684    'tags' => array('add_notes' => true),
685    'search' => array('add_notes' => true),
686    'comments' => array('add_notes' => true),
687    'admin' => array('used' => false),
688    'feed' => array('used' => false),
689    'notification' => array('used' => false),
690    'nbm' => array('used' => false),
691    'popuphelp' => array('used' => false),
692    'profile' => array('used' => false),
693    'ws' => array('used' => false),
694    'identification' => array('cancel' => true),
695    'install' => array('cancel' => true),
696    'password' => array('cancel' => true),
697    'register' => array('cancel' => true),
698  );
699
700// +-----------------------------------------------------------------------+
701// | Slideshow                                                             |
702// +-----------------------------------------------------------------------+
703// slideshow_period : waiting time in seconds before loading a new page
704// during automated slideshow
705// slideshow_period_min, slideshow_period_max are bounds of slideshow_period
706// slideshow_period_step is the step of navigation between min and max
707$conf['slideshow_period_min'] = 1;
708$conf['slideshow_period_max'] = 10;
709$conf['slideshow_period_step'] = 1;
710$conf['slideshow_period'] = 4;
711
712// slideshow_repeat : slideshow loops on pictures
713$conf['slideshow_repeat'] = true;
714
715// $conf['light_slideshow'] indicates to use slideshow.tpl in state of
716// picture.tpl for slideshow
717// Take care to have slideshow.tpl in all available templates
718// Or set it false.
719// Check if Picture's plugins are compliant with it
720// Every plugin from 1.7 would be design to manage light_slideshow case.
721$conf['light_slideshow'] = true;
722
723// the local data directory is used to store data such as compiled templates,
724// plugin variables, combined css/javascript or resized images. Beware of
725// mandatory trailing slash.
726$conf['data_location'] = '_data/';
727
728// where should the API/UploadForm add photos? This path must be relative to
729// the Piwigo installation directory (but can be outside, as long as it's
730// reachable from your webserver).
731$conf['upload_dir'] = './upload';
732
733// where should the user be guided when there is no photo in his gallery yet?
734$conf['no_photo_yet_url'] = 'admin.php?page=photos_add';
735
736// directory with themes inside
737$conf['themes_dir'] = PHPWG_ROOT_PATH.'themes';
738
739// pLoader direct download url for windows
740$conf['ploader_download_windows'] = 'http://piwigo.org/ext/download.php?eid=270';
741
742// pLoader direct download url for mac
743$conf['ploader_download_mac'] = 'http://piwigo.org/ext/download.php?eid=353';
744
745// pLoader direct download url for linux
746$conf['ploader_download_linux'] = 'http://piwigo.org/ext/download.php?eid=269';
747
748// enable the synchronization method for adding photos
749$conf['enable_synchronization'] = true;
750
751// permitted characters for files/directoris during synchronization
752$conf['sync_chars_regex'] = '/^[a-zA-Z0-9-_.]+$/';
753
754// folders name exluded during synchronization
755$conf['sync_exclude_folders'] = array();
756
757// PEM url (default is http://piwigo.org/ext)
758$conf['alternative_pem_url'] = '';
759
760// categories ID on PEM
761$conf['pem_plugins_category'] = 12;
762$conf['pem_themes_category'] = 10;
763$conf['pem_languages_category'] = 8;
764
765// based on the EXIF "orientation" tag, should we rotate photos added in the
766// upload form or through pwg.images.addSimple web API method?
767$conf['upload_form_automatic_rotation'] = true;
768
769// 0-'auto', 1-'derivative' 2-'script'
770$conf['derivative_url_style']=0;
771
772$conf['chmod_value']= substr_compare(PHP_SAPI, 'apa', 0, 3)==0 ? 0777 : 0755;
773
774// 'small', 'medium' or 'large'
775$conf['derivative_default_size'] = 'medium';
776
777// below which size (in pixels, ie width*height) do we remove metadata
778// EXIF/IPTC... from derivative?
779$conf['derivatives_strip_metadata_threshold'] = 256000;
780
781//Maximum Ajax requests at once, for thumbnails on-the-fly generation
782$conf['max_requests']=3;
783
784// one of '', 'images', 'all'
785//TODO: Put this in admin and also manage .htaccess in #sites and upload folders
786$conf['original_url_protection'] = '';
787
788
789// Default behaviour when a new album is created: should the new album inherit the group/user
790// permissions from its parent? Note that config is only used for Ftp synchro,
791// and if that option is not explicitly transmit when the album is created.
792$conf['inheritance_by_default'] = false;
793
794// 'png' or 'jpg': your uploaded TIF photos will have a representative in
795// JPEG or PNG file format
796$conf['tiff_representative_ext'] = 'png';
797
798// in the upload form, let users upload only picture_exts or all file_exts?
799// for some file types, Piwigo will try to generate a pwg_representative
800// (TIFF, videos, PDF)
801$conf['upload_form_all_types'] = false;
802
803// If we try to generate a pwg_representative for a video we use ffmpeg. If
804// "ffmpeg" is not visible by the web user, you can define the full path of
805// the directory where "ffmpeg" executable is.
806$conf['ffmpeg_dir'] = '';
807
808// +-----------------------------------------------------------------------+
809// |                                 log                                   |
810// +-----------------------------------------------------------------------+
811// Logs directory, relative to $conf['data_location']
812$conf['log_dir'] = '/logs';
813
814// Log level (OFF, CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG)
815// development = DEBUG, production = ERROR
816$conf['log_level'] = 'DEBUG';
817
818// Keep logs file during X days
819$conf['log_archive_days'] = 30;
820?>
Note: See TracBrowser for help on using the repository browser.