1 - quick and hard-coded solution
2 - you have php > 5
3 - we know that gd is there
modules/coppermine/admin/index.inc at line 65 you will found gdVersion() function, replace the function with this:
| PHP: |
<?php function gdVersion() { # start hard-coded solution return 2; # end hard-coded solution if (!extension_loaded('gd')) { return; } ob_start(); phpinfo(8); $info=ob_get_contents(); ob_end_clean(); $info=stristr($info, 'gd version'); preg_match('/\d/', $info, $gd); return $gd[0]; } // end function gdVersion()
|