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);//让某用户登录
Simulated member exit code
Introduction/member/config.php
$cfg_ml->DelCache($cfg_ml->M_ID);//清除会员登录缓存 $cfg_ml->ExitCookie();//退出当前登录用户
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); }
Change the above statement to:
if(empty($gourl) || eregi("action|_do",$gourl)) { ShowMsg("登录成功,正在转向网站首页...","/",0,2000); }
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 "";
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);
and replace it with:
ShowMsg("成功退出登录!","/",0,2000);
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

WebStorm Mac version
Useful JavaScript development tools