destoon会员注册提示“数据校验失败(2)”解决方法_PHP

WBOY
Release: 2016-06-01 11:51:41
Original
848 people have browsed it

很多人在使用destoon建立一个B2B系统的时候,会在企业站注册企业用户的时候出现:“数据校验失败(2)”的错误提示,严重影响用户的使用。现将解决方法公布如下:

从destoon的后台进入module/member/register.inc.php

在register.inc.php文件中找到:

if($submit){

Copy after login

将其下的

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

Copy after login

注释掉:

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

Copy after login

再找到

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

Copy after login

也注释掉:

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

Copy after login

至此,该问题得以解决。

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