yep thats it folks, everyone had the same prob he must check on his site if GD loaded or not by this code:
PHP Code:
<?php
$loaded = ( bool ) false;
$lib = 'GD';
$data = get_loaded_extensions();
foreach ( $data as $val )
{
if ( stristr( $val, $lib ) ) {
$loaded = true;
}
echo $val . '<br /><br />';
}
if ( $loaded ) {
echo '<strong>' . $lib . ' is loaded';
} else {
echo '<strong>' . $lib . ' is not loaded loaded';
}
?>
other ways if GD loaded so the imagettftext is not allowed at your webhost, so talk to him :devious:
l8er :ninja: