i foud code check for GD on the site after check
the result is ( GD v2 installed )
i dont no if this code is true ( is GD installed on my server or no )
PHP Code:
<?PHP
//check if gd library is installed
function gdCheck() {
if (function_exists('imagecreatetruecolor')) {
print "GD v2 installed";
}
elseif (function_exists('imagecreate')) {
print "GD v1 installed";
}
else {
print "GD not installed";
}
}
gdCheck();
?>
i wait the replay :erm: