diff --git a/lib/private/util.php b/lib/private/util.php index 896b076afa6..be4aac69564 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1467,4 +1467,11 @@ class OC_Util { return false; } } + + /** + * @return string + */ + public static function isPhpCharSetUtf8() { + return ini_get('default_charset') === 'UTF-8'; + } } diff --git a/settings/admin.php b/settings/admin.php index dd5f969fa1a..9d631bbf98c 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -39,6 +39,7 @@ $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isInternetConnectionEnabled() ? OC_Util::isInternetConnectionWorking() : false); $tmpl->assign('isLocaleWorking', OC_Util::isSetLocaleWorking()); +$tmpl->assign('isPhpCharSetUtf8', OC_Util::isPhpCharSetUtf8()); $tmpl->assign('isAnnotationsWorking', OC_Util::isAnnotationsWorking()); $tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); $tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 03f3efd7aae..de46cec476c 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -129,14 +129,28 @@ if (!$_['has_fileinfo']) { // is PHP at least at 5.3.8? if ($_['old_php']) { ?> -
-

t('Your PHP version is outdated'));?>

+
+

t('Your PHP version is outdated'));?>

t('Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly.')); ?> -
+
+ +
+

t('PHP charset is not set to UTF-8'));?>

+ + + t("PHP charset is not set to UTF-8. This can cause major issues with non-acsii characters in file names. We highly recommend to change the value of 'default_charset' php.ini to 'UTF-8'.")); ?> + + +
-
-

t('Internet connection not working'));?>

+
+

t('Internet connection not working'));?>

t('This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don“t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features.')); ?> -
+