From 8ba99a67520be19721924d7a41bd3d7f7029e893 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 18 Sep 2020 11:38:43 +0200 Subject: Wizard: some more yum command to avoid some common issues with enabled repo. --- wizard/index.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wizard/index.php b/wizard/index.php index 9cc36026..6f9e1631 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -81,7 +81,7 @@ $phpvers = [ ]; $phpname = [ ':devel' => 'Development version, not ready for production', - '8.0' => '8.0.0beta3', + '8.0' => '8.0.0beta4', ':stable' => 'Stable versions - usage recommended', '7.4' => '7.4.10 (active support until November 2021)', '7.3' => '7.3.22 (active support until December 2020)', @@ -259,7 +259,11 @@ if ($php && $os && $type && !$err) { printf("
  • Alternatively, you may prefer the modern way, by to enabling the module stream for $php:"); } } else if ($yum == 'yum') { // EL-6, 7 - printf("
        yum-config-manager --enable %s

  • ", $repo); + printf("
        yum-config-manager --disable 'remi-php*'");
    +                printf(   "\n    yum-config-manager --enable   %s

    ", $repo); + + printf("
  • You can check the list of the enabled repositories:"); + printf("
        yum repolist

  • "); printf("
  • If the priorities plugin is enabled, ensure %s have higher priority (a lower value) than %s

  • ", $repo, ($dist == 'Fedora' ? 'fedora' : 'base and updates')); } else { // EL-8, module only printf("
  • You have to enable the module stream for $php:"); -- cgit