diff options
author | Remi Collet <remi@remirepo.net> | 2022-10-27 15:56:08 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2022-10-27 15:56:08 +0200 |
commit | 31629ca04d8a44cb5db97b29e0a8403644f3c63f (patch) | |
tree | e696281bff974a31baa4de045ad3ab161fe898e3 /wizard | |
parent | 747d2f776c49e8f128cb2f28ca44cf177cc573c7 (diff) |
refresh versions and improv. install/update command
Diffstat (limited to 'wizard')
-rw-r--r-- | wizard/index.php | 14 |
1 files 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("</li><br />"); } - printf("<li>Command to upgrade (the repository only provides PHP):"); + printf("<li>If an old version is installed, command to <b>upgrade</b>:"); printf("<pre> $yum update</pre>"); printf("</li><br />"); - printf("<li>Command to install <b>additional</b> packages:"); + printf("<li>If no version is installed, command to <b>install</b> the php command:"); + printf("<pre> $yum install php-cli</pre>"); + printf("</li><br />"); + + printf("<li>Command to install <b>additional</b> packages (xxx for SAPI of extension name):"); printf("<pre> $yum install php-xxx</pre>"); printf("</li><br />"); |