Home  >  Article  >  Backend Development  >  Solution to destoon member registration prompt "Data verification failed (2)"_PHP tutorial

Solution to destoon member registration prompt "Data verification failed (2)"_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:24:291018browse

When many people use destoon to build a B2B system, the error message "Data verification failed (2)" will appear when registering corporate users on the corporate website, which seriously affects the user's use. The solution is now announced as follows:

Enter module/member/register.inc.php from destoon’s backend

Found in register.inc.php file:

if($submit){

Put it down

if($action != crypt_action(‘register')) dalert($L['check_sign'].'(1)');

Comment out:

//if($action != crypt_action(‘register')) dalert($L['check_sign'].'(1)');

Find again

if($_SESSION['regemail'] != md5(md5($post['email'].DT_KEY.$DT_IP))) dalert($L['check_sign']);

Also comment out:

//if($_SESSION['regemail'] != md5(md5($post['email'].DT_KEY.$DT_IP))) dalert($L['check_sign'].'(2)');

At this point, the problem is solved.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825472.htmlTechArticleWhen many people use destoon to build a B2B system, they will see: " "Data verification failed (2)" error message seriously affects the user's use...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn