this one is on 3.7 not working:
PHP Code:
require_once(DIR . '/includes/functions_regimage.php');
$imagehash = fetch_regimage_hash();
eval('$imagereg = "' . fetch_template('imagereg') . '";');
now its the class_humanverify
i've look in the scripts and i think that thats the way it works:
PHP Code:
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
$human_verify = $verify->output_token();
and check:
PHP Code:
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
if (!$verify->verify_token($vbulletin->GPC['humanverify']))
{
die("falsch");
}
else {
die("richtig");
}
but i'm getting always "falsch" what means that the verification code isn't right
somebody a idee what i'M making wrong?
--------------- Added [DATE]1201475010[/DATE] at [TIME]1201475010[/TIME] ---------------
nobody have a idee?