Home > CMS Tutorial > DEDECMS > body text

How to remove the DreamWeaver chain from the dedecms friendly link

藏色散人
Release: 2019-12-16 09:46:10
Original
1890 people have browsed it

How to remove the DreamWeaver chain from the dedecms friendly link

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;
Copy after login

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[&#39;result&#39;]) OR $result[&#39;timeout&#39;] < time()) 
{ 
$linkUrl = DedeGetHtml("http://flink.dedecms.com/server_url.php")."flink_v56.php?lang={$cfg_soft_lang}&site={$_SERVER[&#39;SERVER_NAME&#39;]}&version=".$cfg_version; 
$linkInfo = DedeGetHtml($linkUrl); 
$result = array(); 
$result[&#39;result&#39;] = $linkInfo; 
$result[&#39;timeout&#39;] = time() + 60 * 60 * 3; // 缓存3个小时 
file_put_contents($cache_file, serialize($result)); 
} else { 
$linkInfo = $result[&#39;result&#39;]; 
}
Copy after login

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!

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!