Home > Backend Development > PHP Tutorial > 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
Release: 2016-07-13 10:24:29
Original
1065 people have browsed it

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){

Copy after login

Put it down

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

Copy after login

Comment out:

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

Copy after login

Find again

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

Copy after login

Also comment out:

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

Copy after login

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...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template