diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/update.sh b/bin/update.sh index 05956b933..15edc2880 100755 --- a/bin/update.sh +++ b/bin/update.sh @@ -143,6 +143,16 @@ if ($RCI->configured) { } } + // check file type detection + if ($RCI->check_mime_detection()) { + echo "WARNING: File type detection doesn't work properly!\n"; + echo "Please check the 'mime_magic' config option or the finfo functions of PHP andrun this script again.\n"; + } + if ($RCI->check_mime_extensions()) { + echo "WARNING: Mimetype to file extension mapping doesn't work properly!\n"; + echo "Please check the 'mime_types' config option and run this script again.\n"; + } + // check database schema if ($RCI->config['db_dsnw']) { echo "Executing database schema update.\n"; |