Thank you for reply.
I have tested all 7.4.X version if php version large than php 7.4.7. Then, it will have error.
So, using php 7.4.7 work perfectly. This version is enough for me. Thank you
Just edit /var/www/imscp/gui/plugins/PhpSwitcher/PhpCompiler/php_compiler.pl accordingly
# Map PHP version names to tiny PHP versions (last known tiny PHP versions)
my %VERSION_NAME_TO_VERSION_TINY_MAP = (
'5.3' => '5.3.29', # End of life: 14 August 2014 - Reached
#'5.4' => '5.4.45', # End of life: 3 September 2015 - Reached
#'5.5' => '5.5.38', # End of life: 21 July 2016 - Reached
'5.6' => '5.6.40', # End of life: 31 December 2018 - Reached
'7.0' => '7.0.33', # End of life: 01 December 2018 - Reached
'7.1' => '7.1.33', # End of life: 01 December 2019
'7.2' => '7.2.24', # End of life: 30 November 2020
'7.3' => '7.3.11', # End of life: 06 December 2021
'7.4' => '7.4.7'
);