From 31629ca04d8a44cb5db97b29e0a8403644f3c63f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 27 Oct 2022 15:56:08 +0200 Subject: refresh versions and improv. install/update command --- wizard/index.php | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/wizard/index.php b/wizard/index.php index 3b86c8b7..ed335089 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -98,10 +98,10 @@ $phpvers = [ ]; $phpname = [ ':devel' => 'Development version, not ready for production', - '8.2' => '8.2.0RC3 (GA planed for Nov/Dec 2022)', + '8.2' => '8.2.0RC5 (GA planed for Nov/Dec 2022)', ':stable' => 'Stable versions - usage recommended', - '8.1' => '8.1.11 (active support until November 2023)', - '8.0' => '8.0.24 (active support until November 2022)', + '8.1' => '8.1.12 (active support until November 2023)', + '8.0' => '8.0.25 (active support until November 2022)', ':secure' => 'Security only versions', '7.4' => '7.4.32 (security only support until November 2022)', ':eol' => 'Deprecated versions - usage discouraged', @@ -364,11 +364,15 @@ if ($php && $os && $type && !$err) { printf("
"); } - printf("
  • Command to upgrade (the repository only provides PHP):"); + printf("
  • If an old version is installed, command to upgrade:"); printf("
        $yum update
    "); printf("

  • "); - printf("
  • Command to install additional packages:"); + printf("
  • If no version is installed, command to install the php command:"); + printf("
        $yum install php-cli
    "); + printf("

  • "); + + printf("
  • Command to install additional packages (xxx for SAPI of extension name):"); printf("
        $yum install php-xxx
    "); printf("

  • "); -- cgit