50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
|
|
/*
|
|
|
|
New Installation Defaults
|
|
-------------------------
|
|
|
|
The following configuration options are set for new installations only.
|
|
This provides a mechanism for enabling new features for new installations without affecting existing installations (as would occur with changes to config.default.php)
|
|
|
|
*/
|
|
|
|
// Set imagemagick default for new installs to expect the newer version with the sRGB bug fixed.
|
|
$imagemagick_colorspace = "sRGB";
|
|
|
|
$contact_link=false;
|
|
$themes_simple_view=true;
|
|
|
|
$stemming=true;
|
|
$case_insensitive_username=true;
|
|
$user_pref_user_management_notifications=true;
|
|
$themes_show_background_image = true;
|
|
|
|
$use_zip_extension=true;
|
|
$collection_download=true;
|
|
|
|
$ffmpeg_preview_force = true;
|
|
$ffmpeg_preview_extension = 'mp4';
|
|
$ffmpeg_preview_options = '-f mp4 -b:v 1200k -b:a 64k -ac 1 -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 3 -c:a aac -strict -2';
|
|
|
|
$daterange_search = true;
|
|
$upload_then_edit = true;
|
|
|
|
$purge_temp_folder_age=90;
|
|
$filestore_evenspread=true;
|
|
|
|
$comments_resource_enable=true;
|
|
|
|
$api_upload_urls = array();
|
|
|
|
$use_native_input_for_date_field = true;
|
|
$resource_view_use_pre = true;
|
|
|
|
$sort_tabs = false;
|
|
$maxyear_extends_current = 5;
|
|
$thumbs_display_archive_state = true;
|
|
$featured_collection_static_bg = true;
|
|
$file_checksums = true;
|
|
$hide_real_filepath = true;
|
|
|
|
$plugins[] = "brand_guidelines"; |