diff options
Diffstat (limited to 'wizard/index.php')
| -rw-r--r-- | wizard/index.php | 42 | 
1 files changed, 22 insertions, 20 deletions
diff --git a/wizard/index.php b/wizard/index.php index 6f965216..ec1eefd9 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -19,12 +19,12 @@ define('COUNTER', __DIR__ . "/counter.txt");  $osvers = [      'RHEL 10'   => ['8.3'],      'RHEL 9'    => ['8.0', '8.1', '8.2', '8.3'], -    'RHEL 8'    => ['7.4', '8.0', '8.2'], +    'RHEL 8'    => ['7.4', '8.2'],      'CentOS 10' => ['8.3'],      'CentOS 9'  => ['8.0', '8.1', '8.2', '8.3'],      'EL 10'     => ['8.3'], -    'EL 9'      => ['8.0', '8.1', '8.2'], -    'EL 8'      => ['7.4', '8.0', '8.2'], +    'EL 9'      => ['8.0', '8.1', '8.2', '8.3'], +    'EL 8'      => ['7.4', '8.2'],      'Fedora 42' => '8.3',      'Fedora 41' => '8.3',      'Fedora 40' => '8.3', @@ -56,16 +56,16 @@ $osminbase = [      'Fedora 40' => '7.4',  ];  $osmax = [ -    'RHEL 10'   => '8.4', -    'RHEL 9'    => '8.4', -    'RHEL 8'    => '8.4', -    'CentOS 10' => '8.4', -    'CentOS 9'  => '8.4', -    'EL 10'     => '8.4', -    'EL 9'      => '8.4', -    'EL 8'      => '8.4', -    'Fedora 42' => '8.4', -    'Fedora 41' => '8.4', +    'RHEL 10'   => '8.5', +    'RHEL 9'    => '8.5', +    'RHEL 8'    => '8.5', +    'CentOS 10' => '8.5', +    'CentOS 9'  => '8.5', +    'EL 10'     => '8.5', +    'EL 9'      => '8.5', +    'EL 8'      => '8.5', +    'Fedora 42' => '8.5', +    'Fedora 41' => '8.5',      'Fedora 40' => '8.4',  ];  $osname = [ @@ -98,6 +98,7 @@ $arches = [  ];  $phpvers = [  	// use false when only SCL +	'8.5' => false,  	'8.4' => 'remi-php84',  	'8.3' => 'remi-php83',  	'8.2' => 'remi-php82', @@ -113,13 +114,14 @@ $phpvers = [      '5.4' => 'remi-php54',  ];  $phpname = [ -//	':devel'  => 'Development version, not ready for production', +	':devel'  => 'Development version, not ready for production', +		'8.5' => '8.5.0alpha1 (development version)',  	':stable' => 'Stable versions - usage recommended', -		'8.4' => '8.4.8 (active support until November 2026)', -		'8.3' => '8.3.22 (active support until December 2025)', +		'8.4' => '8.4.10 (active support until November 2026)', +		'8.3' => '8.3.23 (active support until December 2025)',  	':secure' => 'Security only versions', -		'8.2' => '8.2.28 (security only support until December 2026)', -		'8.1' => '8.1.32 (security only support until December 2025)', +		'8.2' => '8.2.23 (security only support until December 2026)', +		'8.1' => '8.1.33 (security only support until December 2025)',  	':eol'    => 'Deprecated versions - usage discouraged',  		'8.0' => '8.0.30 (no upstream support since November 2023)',  		'7.4' => '7.4.33 (no upstream support since November 2022)', @@ -130,8 +132,8 @@ $phpname = [  		'5.6' => '5.6.40 (no upstream support since January 2019) - SCL and EL-8 only',  ];  $phptest = [ -	'8.4' => '8.4.9RC1', -	'8.3' => '8.3.23RC1', +//	'8.4' => '8.4.9RC1', +//	'8.3' => '8.3.23RC1',  ];  $php  = (isset($_POST['php'])  && isset($phpvers[$_POST['php']]) ? $_POST['php'] : false);  | 
