织梦dedecms站点data目录位置变动调整验证码不显示的解决办法
2012-02-20 11:47:57 来源:本站整理核心提示:注:DedeCMS v5.7 sp1不需要以上操作,这一点官方已升级调整过了,织梦dedecms站点data目录位置变动调整验证码不显示的解决办法, 如果按照这篇文档里操作之后,验证码不显示,比如上面3步操作是将data移到根目录的上一级目录,我们这里对data的路径加一个“/..”,改后如下:
注: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/";
好了,这样就可以了。
如果按照这篇文档里操作之后,验证码不显示,说明有一个地方,你还没有调整:
打开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/";
好了,这样就可以了。
- ››dedecms图文教程-联动类别的使用方法
- ››DedeCMS在Linux下安装及安全设置教程
- ››DedeCMS编辑器fck更换成eWebEditor编辑器
- ››DedeCMS修改SQL批量修改来源和作者
- ››DataGrid中CheckBox绑定bool属性来进行选中判断
- ››dedecms织梦幻灯片的制作教程
- ››dedecms制作xml格式的网站地图做法
- ››DEDECMS在列表调用当前栏目的文章总数的修改方法
- ››dedecms循环调用二级栏目下三级栏目
- ››DEDECMS安装56网(56视频系统)开放平台教程
- ››DedeCms参考手册、函数及文件大全
- ››dedecms标签调用大全
更多精彩
赞助商链接