Home > CMS Tutorial > DEDECMS > How to cancel the background login verification code in DedeCms

How to cancel the background login verification code in DedeCms

藏色散人
Release: 2019-12-02 09:11:24
Original
2590 people have browsed it

How to cancel the background login verification code in DedeCms

How to cancel the background login verification code in DedeCms?

First simulate member login and logout, there are two Important files, one is memberlogin.class.php under include and cache.helper.php file under include/helpers.

The principle is: memberlogin.class.php uses the cache assistant helper('cache'), and then the /member/config.php file introduces the memberlogin.class.php file to simulate login and exit.

Simulated member login code

Introduction/member/config.php

$cfg_ml->DelCache($cfg_ml->M_ID);//清除会员登录缓存
$cfg_ml->PutLoginInfo($mid);//让某用户登录
Copy after login

Simulated member exit code

Introduction/member/config.php

$cfg_ml->DelCache($cfg_ml->M_ID);//清除会员登录缓存
$cfg_ml->ExitCookie();//退出当前登录用户
Copy after login

Additional: Summary of various issues in the transfer of the Dede member login function

In the default membership system template of Dede, members log in on the homepage Afterwards, it will jump to the member center by default and log in on other pages. This is also the case. If when building a website, for the convenience of display, you need to jump to the homepage of the website or the currently visited page after logging in, how to solve it?

In the default membership system template of DreamWeaver

Let members not jump when logging in, but stay on the current page and modify the code as required below to achieve this function. First, find the

index_do.php file in the member folder in the root directory. After the member logs in, you need to modify the following statement to jump back to the homepage:

if(empty($gourl) || preg_match("#action|_do#i", $gourl)) { ShowMsg("成功登录,5秒钟后转向系统主页...","index.php",0,2000); }
Copy after login

Change the above statement to:

if(empty($gourl) || eregi("action|_do",$gourl)) { ShowMsg("登录成功,正在转向网站首页...","/",0,2000); }
Copy after login

It can be seen from the code that only the jump address has been modified. What if you want to return to the current page after logging in? Just change it to the following code:

ShowMsg("成功退出登录!","-1",0,2000); echo "";
Copy after login

After changing to "-1", the page will return to the page you logged in before. If you want to realize that when DedeCMS members exit the system, they also return to the homepage of DedeCMS website. You can use the same method and search for the following sentence in the index_do.php file:

ShowMsg("成功退出登录!","index.php",0,2000);
Copy after login

and replace it with:

ShowMsg("成功退出登录!","/",0,2000);
Copy after login

In this way, DedeCMS members will not return to the DedeCMS member center when logging in and out.

The above is the detailed content of How to cancel the background login verification code in DedeCms. For more information, please follow other related articles on the PHP Chinese website!

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