Merge branch 'ent-10451-no-se-puede-actualizar-a-la-769-server-por-update-manager-offline-en-centos-7' into 'develop'

Ent 10451 no se puede actualizar a la 769 server por update manager offline en centos 7

See merge request artica/pandorafms!5606
This commit is contained in:
Daniel Rodriguez 2023-03-30 13:10:32 +00:00
commit 3e51586738
2 changed files with 15 additions and 10 deletions

View File

@ -623,7 +623,9 @@ class Manager
if ($server_update === false) {
$return['files'] = Client::checkOUMContent($file_path);
} else {
$return['files'] = Client::checkTGZContent($file_path);
// Commented line for memory limit problems.
// $return['files'] = Client::checkTGZContent($file_path);
$return['files'] = null;
}
if (session_status() !== PHP_SESSION_ACTIVE) {

View File

@ -172,6 +172,8 @@ function form_upload(url, auth, current_package) {
log_zone.html("<div>" + texts.uploadSuccess + "</div>");
log_zone.append("<div>" + texts.uploadMessage + "</div>");
log_zone.append("<div>" + texts.clickToStart + "</div>");
if (res.files !== null) {
var file_list =
"<h2>" + texts.fileList + "</h2><div class='file_list'>";
@ -183,6 +185,7 @@ function form_upload(url, auth, current_package) {
file_list += "</div>";
log_zone.append(file_list);
}
// Show messages
$("#log_zone").slideDown(400, function() {