• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Image Verification is missing.

Status
Not open for further replies.
What version of this AAC you 2 sweet boobs are using?

If possible, download link plx.
 
Neon, does your server support gd2/imagick ?

Without this image will not be generated.

#Edit

I checked how this error is generated.

In your config.php do you have this variable?

$config['site']['verify_code'] = 1;

If not, then try to paste this there.
 
Last edited:
Neon, does your server support gd2/imagick ?

Without this image will not be generated.

#Edit

I checked how this error is generated.

In your config.php do you have this variable?



If not, then try to paste this there.

If they wouldnt, the error wouldnt show. :)
 
I have had the same problem as you, unfortunately I could not settle it, installed apache/apache2/php5 it does not work : ((
 
Try this one:

imagebuilder/imagebuilder.php

PHP:
<?     
   session_start(); 
   $pool = '0123456789'; 
   $img_width = 80; 
   $img_height = 30; 
   $str = ''; 
   for ($i = 0; $i < 4; $i++){ 
       $str .= substr($pool, mt_rand(0, strlen($pool) -1), 1); 
   } 
   $string = $str;
   $im = imagecreate($img_width, $img_height); 
   $bg_color     = imagecolorallocate($im,103,103,103); 
   $font_color   = imagecolorallocate($im,252,252,252); 
   $grid_color   = imagecolorallocate($im,31,0,0); 
   $border_color = imagecolorallocate ($im, 174, 174, 174); 
   imagefill($im,1,1,$bg_color); 
   for($i=0; $i<500; $i++){ 

       $rand1 = rand(0,$img_width); 
       $rand2 = rand(0,$img_height); 
       imageline($im, $rand1, $rand2, $rand1, $rand2, $grid_color); 

   }
   $x = rand(5, $img_width/(7/2)); 
   imagerectangle($im, 0, 0, $img_width-1, $img_height-1, $border_color); 
   for($a=0; $a < 4; $a++){ 

       imagestring($im, 5, $x, rand(6 , $img_height/5), substr($string, $a, 1), $font_color); 
       $x += (5*2); #odstęp 
   }
   $_SESSION['string'] = $string; 
   header("Content-type: image/gif"); 
   imagegif($im); 
   imagedestroy($im); 

?>

If it will not work, I might try later to write own one, anyway if you are scraed of being mass spammed by new accounts like my scripts was relsaded but deleted to do this, then you can use SESSIONS to make user create one account per 10 minutes. You won't get spammed :)
 
Try this one:

imagebuilder/imagebuilder.php

PHP:
<?     
   session_start(); 
   $pool = '0123456789'; 
   $img_width = 80; 
   $img_height = 30; 
   $str = ''; 
   for ($i = 0; $i < 4; $i++){ 
       $str .= substr($pool, mt_rand(0, strlen($pool) -1), 1); 
   } 
   $string = $str;
   $im = imagecreate($img_width, $img_height); 
   $bg_color     = imagecolorallocate($im,103,103,103); 
   $font_color   = imagecolorallocate($im,252,252,252); 
   $grid_color   = imagecolorallocate($im,31,0,0); 
   $border_color = imagecolorallocate ($im, 174, 174, 174); 
   imagefill($im,1,1,$bg_color); 
   for($i=0; $i<500; $i++){ 

       $rand1 = rand(0,$img_width); 
       $rand2 = rand(0,$img_height); 
       imageline($im, $rand1, $rand2, $rand1, $rand2, $grid_color); 

   }
   $x = rand(5, $img_width/(7/2)); 
   imagerectangle($im, 0, 0, $img_width-1, $img_height-1, $border_color); 
   for($a=0; $a < 4; $a++){ 

       imagestring($im, 5, $x, rand(6 , $img_height/5), substr($string, $a, 1), $font_color); 
       $x += (5*2); #odstęp 
   }
   $_SESSION['string'] = $string; 
   header("Content-type: image/gif"); 
   imagegif($im); 
   imagedestroy($im); 

?>

If it will not work, I might try later to write own one, anyway if you are scraed of being mass spammed by new accounts like my scripts was relsaded but deleted to do this, then you can use SESSIONS to make user create one account per 10 minutes. You won't get spammed :)

hmmz still not working, I don't know why:S
 
hello!
somebody know how fix this problem?

Image Verification is missing, please contact the administrator

i dont know why!

help plx :)
 
@Emma & Paxton: Try uploading the files instead of pasting them directly onto OtLand. Seeing as I did that with my signature script and it added white-space or something which pretty much destroyed the image until I uploaded it and the issue went away.

If it still doesn't work, may I suggest you to go here: FAQ PHP - LibGD
 
Yes, I'm almost sure they don't have this library.

I would suggest now to use SESSIONS if you don't want to install it.

Sessions will allow each client to create account each 10 minutes, so even if you get flooded it won't harm. :)
 
@Emma & Paxton: Try uploading the files instead of pasting them directly onto OtLand. Seeing as I did that with my signature script and it added white-space or something which pretty much destroyed the image until I uploaded it and the issue went away.

If it still doesn't work, may I suggest you to go here: FAQ PHP - LibGD

I already checked that, it is enabled!:S
 
Status
Not open for further replies.
Back
Top