Captcha Probleme

12/23/2012 13:14 MrPlugin#1
Hallo leute, nachdem mein Server via DynDNS online ist, habe ich ein Problem mit der Captcha. Bei der Registrierung wird der das Captcha bild nicht angezeigt.

PHP Code:
<?PHP
  session_name
("m2hp");
  
session_start();
  
  
header("Content-Type: image/png");                                // Sets the Content of this file to an PNG-Image
  
  
$ttf "./franconi.ttf";                                          //Schriftart 
  
  
$_SESSION["captcha_id"] = "";                                     // Clears the old value
  
  
$zufallszahl mt_rand(50000,60000);                              // Generates a random number between 50000 and 60000
  
  
$_SESSION["captcha_id"] = $zufallszahl;                           // Sets the value of the session
  
  
$bild imagecreatefromgif("bg.gif");                             // Creates a new image from background file
  
  
$weisser imagecolorallocate($bild255255255);              // Sets white text color
  
  
imagettftext($bild1110520$weisser$ttf$_SESSION["captcha_id"]); 
  
//imagestring($bild, 3, 8, 6,  $_SESSION["captcha_id"], $weisser);  // Prints the random number von the image
  
  
ImagePNG($bild);                                                  // Output for the generated image
?>
12/23/2012 14:14 ralriki#2
Dann werden wohl die benötigten Dateien nicht im Captcha ordner liegen.
12/23/2012 15:25 MrPlugin#3
Alle dateien und bilder sind drinnen ...