Server Upgrade On Host Made Php Version Too High

My hosting company upgraded the PHP on our server and cannot install earlier versions since it is shared. I cannot even get to admin on the site. I am running CS-Cart 3 and the following is the error I am getting: PHP version from 5.1.0 to 5.3.x is required. PHP 5.4.x and later are not supported. Your PHP is version 5.4.45, please ask your host to install a supported version. Any help would be appreciated.

In the prepare.php file please delete the following lines:

if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '<') || version_compare(PHP_VERSION, MAX_PHP_VERSION, '>')) {
die('PHP version from ' . MIN_PHP_VERSION . ' to 5.3.x is required. PHP 5.4.x and later are not supported. Your PHP is version ' . PHP_VERSION . ', please ask your host to install a supported version.');

}

It should allow you to log in the admin panel. But note that possibly you will see a lot of warnings and notices

In the prepare.php file please delete the following lines:

if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '<') || version_compare(PHP_VERSION, MAX_PHP_VERSION, '>')) {
die('PHP version from ' . MIN_PHP_VERSION . ' to 5.3.x is required. PHP 5.4.x and later are not supported. Your PHP is version ' . PHP_VERSION . ', please ask your host to install a supported version.');

}

It should allow you to log in the admin panel. But note that possibly you will see a lot of warnings and notices

That worked great! Thank you!