diff options
-rwxr-xr-x | check.php | 9 | ||||
-rw-r--r-- | wizard/index.php | 8 |
2 files changed, 10 insertions, 7 deletions
@@ -90,8 +90,6 @@ $mirrors = [ 'https://mirror.docker.ru/remi/', 'https://repo.extreme-ix.org/remi/', 'https://mirror.mangohost.net/remi/', - 'https://bd.mirror.vanehost.com/Remi/', - 'https://repo1.vetta.net.nz/remi/', 'https://cdn.fjordos.no/remi/', 'https://mirror.fjordos.no/remi/', 'https://muug.ca/mirror/remi/', @@ -106,6 +104,8 @@ $mirrors = [ 'http://repo1.ash.innoscale.net/remi/', // 2025-01-13 ]; $testing = [ + 'https://bd.mirror.vanehost.com/Remi/', + 'https://repo1.vetta.net.nz/remi/', ]; $disabled = [ 'http://remi.conetix.com.au/', // 2025-01-06 @@ -297,7 +297,10 @@ if ($ref) { unset($pids[$pid]); } } - if ($nb) printf("%3d mirrors checked,\n%3d are OK\n%3d are stalled\n%3d are KO.\n", $nb, $ok, $lack, $nb-$ok-$lack); + if ($nb) { + printf("%3d mirrors checked on %s,\n%3d are OK\t(%d%%)\n%3d are stalled\t(%d%%)\n%3d are KO.\n", + $nb, date("r"), $ok, $ok*100/$nb, $lack, $lack*100/$nb, $nb-$ok-$lack); + } } else { echo "</ul>\n"; } diff --git a/wizard/index.php b/wizard/index.php index 1e631970..cb33904c 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -109,8 +109,8 @@ $phpvers = [ $phpname = [ // ':devel' => 'Development version, not ready for production', ':stable' => 'Stable versions - usage recommended', - '8.4' => '8.4.2 (active support until November 2026)', - '8.3' => '8.3.15 (active support until December 2025)', + '8.4' => '8.4.3 (active support until November 2026)', + '8.3' => '8.3.16 (active support until December 2025)', ':secure' => 'Security only versions', '8.2' => '8.2.27 (security only support until December 2026)', '8.1' => '8.1.31 (security only support until December 2025)', @@ -124,8 +124,8 @@ $phpname = [ '5.6' => '5.6.40 (no upstream support since January 2019)', ]; $phptest = [ - '8.4' => '8.4.3RC1', - '8.3' => '8.3.16RC1', +// '8.4' => '8.4.3RC1', +// '8.3' => '8.3.16RC1', ]; $php = (isset($_POST['php']) && isset($phpvers[$_POST['php']]) ? $_POST['php'] : false); |