织梦CMS V5.7版本转移data目录后验证码无法显示的
导读:织梦教程织梦教程最近 dedecms 官方出了安全补丁,把转移deta目录可以让织梦站点更安全,今天小编在测试 dedecms 最新更新的5.7版本在我们的管理后台中有一个转移dede网站模板。
最近dedecms官方出了安全补丁,把转移deta目录可以让织梦站点更安全,今天小编在测试dedecms最新更新的5.7版本在我们的管理后台中有一织梦模板个转移data目录的建议,我把data目录转移之后发现验证码不显示的问题,下面就来说一下解决方法吧 也许你还有这个东西没有调整到位 可以参考一下: 打开include下的vdimgck.php, 找到如下代码: require_once (dirname(__FILE__).’/../data/safe/inc_safe_config.php’); require_once (dirname(__FILE__).’/../data/config.cache.inc.php’); $config = array( dede后台模板‘font_size’ => 14, ‘img_height’ => $safe_wheight, ‘word_type’ => (int)$safe_codetype, // 1:数字 2:英文 3:单词 ‘img_width’ => $safe_wwidth, ‘use_boder’ => TRUE, ‘font_file’ => dirname(__FILE__).’/data/fonts/ggbi.ttf’, ‘wordlist_file’ => dirname(__FILE__).’/data/words/words.txt’, ‘filter_type’ => 5); $sessSavePath = dirname(__FILE__)."/../data/sessions/";
将上面代码中的data路径做相应的调整,比如上面3步操作是将data移到根目录的上一级目录,我们这里对data的路径加一个“/..”,改后如下: require_once (dirname(__FILE__).’/../../data/safe/inc_safe_config.php’); require_once (dirname(__FILE__).’/../../data/config.cache.inc.php’); $config = array( ‘font_size’ => 14, ‘img_height’ => $safe_wheight, ‘word_type’ => (int)$safe_codetype, // 1:数字 2:英文 3:单词 ‘img_width’ => $safe_wwidth, ‘use_boder’ => TRUE, ‘font_file’ => dirname(__FILE__).’/data/fonts/ggbi.ttf’, ‘wordlist_file’ => dirname(__FILE__).’/data/words/words.txt’, ‘filter_type’ => 5); $sessSavePath = dirname(__FILE__)."/../../data/sessions/";
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-22 ,文章织梦CMS V5.7版本转移data目录后验证码无法显示的主要讲述验证码,解决办法,CMS网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_34714.html