织梦CMS V5.7版本转移data目录后验证码无法显示的如何解决办法

四个拥有:无论你有多弱或多强,一定要拥有真正爱你的人,拥有知心的朋友,拥有向上的事业,拥有温暖的住所。

     最近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(
                ‘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/";

好了,这样就可以了。

<script type="text/javascript"> document.body.oncopy = function (){ setTimeout(function (){ var text = clipboardData.getData("text"); if (text){ texttext = text + "rn本文转载于DeDeCms模板中心(genban.org)- 织梦模板 DEDECMS企业模板 DEDECMS仿站 dede模板下载:http://www.genban.org-原文链接:"+location.href; clipboardData.setData("text", text); } },100) } </script>



 

以上就是织梦CMS V5.7版本转移data目录后验证码无法显示的如何解决办法。你还年轻,别凑合过。更多关于织梦CMS V5.7版本转移data目录后验证码无法显示的如何解决办法请关注haodaima.com其它相关文章!

标签: 办法