Skip to content
Extraits de code Groupes Projets
Valider 2133945f rédigé par mattab's avatar mattab
Parcourir les fichiers

fixes #6237 Reading php_uname in case shell_exec failed.

According to http://forum.piwik.org/read.php?2,113613,page=1#msg-113739
php_uname will not return full string as in the shell, so we must first read shell_exec output
parent c41a805b
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -168,6 +168,11 @@ class Process
private static function isSystemNotSupported()
{
$uname = @shell_exec('uname -a');
if(empty($uname)) {
$uname = php_uname();
}
if(strpos($uname, 'synology') !== false) {
return true;
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter