Page 1 of 1

Update to 1.12.2 need to disable gd-check

Posted: Mon May 10, 2021 11:18 am
by janvl
Hi

in order to run a serie of updates to get an old site to the latest CMSMS i need to get past the check for GD in the install of 1.12.2
does anyone know where to disable that check. I added PHP 5.6 to my server but gd will not install, i do not need that for higher PHP-Versions where gd is in there.
Just need to get past the point of 1.12.2 so i can go to 2 - 2.1 - 2.2

Thanks in advance.

Jan

Re: Update to 1.12.2 need to disable gd-check

Posted: Wed May 12, 2021 5:18 pm
by velden
install\lib\classes\CMSUpgradePage2.class.php

Code: Select all

list($minimum, $recommended) = getTestValues('gd_version');
		$settings['required'][] = testGDVersion(1, ilang('test_check_gd'), $minimum, ilang('test_check_gd_failed'), 'min_GD_version');
The first parameter of testGDVersion tells the installer if it's a required (1) or recommended (0) setting.

Re: Update to 1.12.2 need to disable gd-check [solved]

Posted: Thu May 13, 2021 8:31 pm
by janvl
Hi

I ran the update on another server and then copied it to the right server.
I now have 2.2.13 and will do the last update soon.

Regards,
JAN