• 设为首页
  • 收藏本站
  • 积分充值
  • VIP赞助
  • 手机版
  • 微博
  • 微信
    微信公众号 添加方式:
    1:搜索微信号(888888
    2:扫描左侧二维码
  • 快捷导航
    福建二哥 门户 查看主题

    织梦dedecms站点data目录位置变动调整验证码不显示的解决办法

    发布者: 雪落无声 | 发布时间: 2025-7-24 16:40| 查看数: 26| 评论数: 0|帖子模式

    注:DedeCMS v5.7 sp1不需要以上操作,这一点官方已升级调整过了。 
    如果按照这篇文档里操作之后,验证码不显示,说明有一个地方,你还没有调整: 
    打开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/"; 

           
    好了,这样就可以了。

    来源:互联网
    免责声明:如果侵犯了您的权益,请联系站长(1277306191@qq.com),我们会及时删除侵权内容,谢谢合作!

    最新评论

    浏览过的版块

    QQ Archiver 手机版 小黑屋 福建二哥 ( 闽ICP备2022004717号|闽公网安备35052402000345号 )

    Powered by Discuz! X3.5 © 2001-2023

    快速回复 返回顶部 返回列表