السلام عليكم
سئلوني كم عضو عن المشكله في منتدياتهم ولكم لم اعتقد ان المشكله كبيره
لان عندما بحثت بالانترنت وجدت حتى مبرمجين الفيبلتين لم يجيبو على هذه المشكله
استغرق منى حل المشكله حوالى من 4 إلى 5 ساعات
والنتيجه كانت مرضيه حيث انحلت المشكله وقمت بتجربتها بنفسي على الاسطوره
الحل فقط خطوتين 
الخطوة 1
ابحث في ملف register.php
كود PHP:
if (fetch_require_hvcheck('register'))
{
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
if (!$verify->verify_token($vbulletin->GPC['humanverify']))
{
$userdata->error($verify->fetch_error());
}
}
استبدل بي
كود PHP:
if ($_REQUEST['do'] == 'addmember')
{
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
if (!$verify->verify_token($vbulletin->GPC['humanverify']))
{
$userdata->error($verify->fetch_error());
}
}
-------------------------
الخطوة 2
ابحث في ملف register.php
كود PHP:
if (fetch_require_hvcheck('register'))
{
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
$human_verify = $verify->output_token();
}
استبدل بي
كود PHP:
if ($_REQUEST['do'] == 'register')
{
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
$human_verify = $verify->output_token();
}
============
قمت بطرح الحل في الموقع الام وسوف نرى ردهم من خلال الموضوع التالى
http://www.vbulletin.com/forum/showthread.php?t=319319