typename = 'Dream Weaver Chain';"; then regenerate the home page HTML. ."/> typename = 'Dream Weaver Chain';"; then regenerate the home page HTML. .">

Home  >  Article  >  CMS Tutorial  >  How to remove the DreamWeaver chain from the dedecms friendly link

How to remove the DreamWeaver chain from the dedecms friendly link

藏色散人
藏色散人Original
2019-12-16 09:46:101887browse

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;

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;]; 
}

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!

Statement:
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