dedecms5.7转移data目录后验证码无法显示的如何解决办法

成长的悲伤在于有一天你会成为你曾经讨厌的人。人生短短数十载,最要紧的是满足自己,不是讨好他人。

 

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/";

好了,这样就可以了。

本文参考织梦8,织梦者-专业dedecms模板制作收集整理 转载请注明

本文dedecms5.7转移data目录后验证码无法显示的如何解决办法到此结束。当世界都在说放下的时候,轻轻的告诉自我:再试一次。小编再次感谢大家对我们的支持!

标签: 办法