display error + delete trailing spaces

This commit is contained in:
Fred Tempez 2022-02-26 14:46:43 +01:00
parent 1f9dd15f2c
commit 7aa0cda992
2 changed files with 9 additions and 11 deletions

View File

@ -198,10 +198,6 @@ class install extends common {
break;
// Téléchargement
case 2:
// Téléchargement depuis le serveur de Zwii
//$success = (file_put_contents(self::TEMP_DIR.'update.tar.gz', helper::getUrlContents('https://zwiicms.fr/update/' . common::ZWII_UPDATE_CHANNEL . '/update.tar.gz')) !== false);
// URL sur le git
//$newVersion = helper::getUrlContents('https://zwiicms.fr/update/' . common::ZWII_UPDATE_CHANNEL . '/version');
file_put_contents(self::TEMP_DIR.'update.tar.gz', helper::getUrlContents(common::ZWII_UPDATE_URL . common::ZWII_UPDATE_CHANNEL . '/update.tar.gz'));
$md5origin = helper::getUrlContents(common::ZWII_UPDATE_URL . common::ZWII_UPDATE_CHANNEL . '/update.md5');
$md5origin = (explode(' ',$md5origin));

View File

@ -43,6 +43,7 @@ function step(i, data) {
$("#installUpdateProgress").hide();
// Affiche le résultat dans la console
console.error(result);
alert(xhr);
}
}, 2000);
},
@ -57,6 +58,7 @@ function step(i, data) {
$("#installUpdateProgress").hide();
// Affiche l'erreur dans la console
console.error(xhr);
alert(xhr);
}
});
}