欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

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

时间: 2019-05-13 11:28 阅读: 作者:素材无忧网

最近织梦DedeCMS官方出了安全补丁,把转移deta目录可以让织梦站点更安全,我把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/";

好了,这样就可以了的。有这个问题的来看看试试吧!

版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: 织梦V5.7转移data目录后验证码无法显示的解决办法

标签:  
相关文章
模板推荐