
How to remove the Dream Weaver Chain from the dedecms friendly link?
dedecmsV5.6 method to remove the "Dreamweaver Chain Drop" connection in the friendly link, dedecmsV5.7 method to delete the Dreamweaver Chain in the friendly link
Dreamweaver CMS V5. 7. The "Dream Weaver Chain" will be automatically added to the friendly links and may be deleted. However, in the background management, Dreamweaver Chain management was not found, so the source file could only be modified.
Recommended learning: DreamWeaver cms
dedecmsV5.7 Method to delete the DreamWeaver chain in friendly links: Backend module---File manager to find DreamWeaver CMS V5.7 root directory include/taglib/flinktype.lib.php file delete the following code and then regenerate the homepage HTML
The code is as follows:
$dedecms = false; $dedecms->id = 999; $dedecms->typename = '织梦链'; if($type == 'dedecms') $row[] = $dedecms;
dedecmsV5.6 remove the "Dream Weaver Chain" in the friendly link Method of "drop" connection: Backend module---File manager, find the root directory include/taglib/flink.lib.php of DreamWeaver CMS V5.6, delete the following code and then regenerate the home page HTML
The code is as follows:
// 获取织梦链
$cache_file = DEDEDATA.'/cache/dedelink.txt';
if(file_exists($cache_file))
{
$result = unserialize(file_get_contents($cache_file));
}
if(!isset($result['result']) OR $result['timeout'] < time())
{
$linkUrl = DedeGetHtml("http://flink.dedecms.com/server_url.php")."flink_v56.php?lang={$cfg_soft_lang}&site={$_SERVER['SERVER_NAME']}&version=".$cfg_version;
$linkInfo = DedeGetHtml($linkUrl);
$result = array();
$result['result'] = $linkInfo;
$result['timeout'] = time() + 60 * 60 * 3; // 缓存3个小时
file_put_contents($cache_file, serialize($result));
} else {
$linkInfo = $result['result'];
}Remember to regenerate HTML.
The above is the detailed content of How to remove the DreamWeaver chain from the dedecms friendly link. 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

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

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

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver CS6
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.





