From 379398d91751ca7394cd7c24ace3f7767fa1e5dd Mon Sep 17 00:00:00 2001 From: plegall Date: Wed, 30 Jul 2014 13:48:35 +0000 Subject: feature 3067: upload any file type with the new HTML5 upload form. $file_types = conf['upload_form_all_types'] ? $conf['file_ext'] : $conf['picture_ext']; By default, conf['upload_form_all_types'] = false; git-svn-id: http://piwigo.org/svn/trunk@29124 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/config_default.inc.php | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) (limited to 'include/config_default.inc.php') diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 7b608ccd5..2b081f830 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -53,15 +53,15 @@ // // $conf['order_by_inside_category_custom'] = $conf['order_by_custom']; -// file_ext : file extensions (case sensitive) authorized -$conf['file_ext'] = array('jpg','JPG','jpeg','JPEG', - 'png','PNG','gif','GIF','mpg','zip', - 'avi','mp3','ogg'); - // picture_ext : file extensions for picture file, must be a subset of // file_ext -$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG', - 'png','PNG','gif','GIF'); +$conf['picture_ext'] = array('jpg','JPG','jpeg','JPEG','png','PNG','gif','GIF'); + +// file_ext : file extensions (case sensitive) authorized +$conf['file_ext'] = array_merge( + $conf['picture_ext'], + array('tiff', 'tif', 'mpg','zip','avi','mp3','ogg') + ); // top_number : number of element to display for "best rated" and "most // visited" categories @@ -798,4 +798,14 @@ $conf['inheritance_by_default'] = false; // 'png' or 'jpg': your uploaded TIF photos will have a representative in // JPEG or PNG file format $conf['tiff_representative_ext'] = 'png'; + +// in the upload form, let users upload only picture_exts or all file_exts? +// for some file types, Piwigo will try to generate a pwg_representative +// (TIFF, videos, PDF) +$conf['upload_form_all_types'] = false; + +// If we try to generate a pwg_representative for a video we use ffmpeg. If +// "ffmpeg" is not visible by the web user, you can define the full path of +// the directory where "ffmpeg" executable is. +$conf['ffmpeg_dir'] = ''; ?> -- cgit v1.2.3