Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已解决] 后台添加广告后就出现无法找到页面

[复制链接]
hycampuse 发表于 2011-9-13 10:03:38 | 显示全部楼层 |阅读模式
本帖最后由 hycampuse 于 2011-9-13 10:06 编辑

错误地址是:http://www.hycampus.cn/action=adv&operation=ad&type=text
然后添加广告后预览广告界面正常,点击提交就出现这个问题了。。。是不是少添加了某个模板页面啊?
谢谢咯


然后就出现这个问题了

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
 楼主| hycampuse 发表于 2011-9-13 10:07:14 | 显示全部楼层
谢谢各位大哥了咯
回复

使用道具 举报

otherbank 发表于 2011-9-13 10:14:20 | 显示全部楼层
你是默认的广告位广告,还是自定义广告?
回复

使用道具 举报

evenzhou 发表于 2011-9-13 10:25:56 | 显示全部楼层
检查 function_core.php中
dreferer函数是否与下面代码相同
  1. function dreferer($default = '') {
  2.         global $_G;

  3.         $default = empty($default) ? $GLOBALS['_t_curapp'] : '';
  4.         $_G['referer'] = !empty($_G['gp_referer']) ? $_G['gp_referer'] : $_SERVER['HTTP_REFERER'];
  5.         $_G['referer'] = substr($_G['referer'], -1) == '?' ? substr($_G['referer'], 0, -1) : $_G['referer'];

  6.         if(strpos($_G['referer'], 'member.php?mod=logging')) {
  7.                 $_G['referer'] = $default;
  8.         }
  9.         $_G['referer'] = htmlspecialchars($_G['referer']);
  10.         $_G['referer'] = str_replace('&', '&', $_G['referer']);
  11.         return strip_tags($_G['referer']);
  12. }
复制代码
回复

使用道具 举报

evenzhou 发表于 2011-9-13 10:26:00 | 显示全部楼层
检查 function_core.php中
dreferer函数是否与下面代码相同
  1. function dreferer($default = '') {
  2.         global $_G;

  3.         $default = empty($default) ? $GLOBALS['_t_curapp'] : '';
  4.         $_G['referer'] = !empty($_G['gp_referer']) ? $_G['gp_referer'] : $_SERVER['HTTP_REFERER'];
  5.         $_G['referer'] = substr($_G['referer'], -1) == '?' ? substr($_G['referer'], 0, -1) : $_G['referer'];

  6.         if(strpos($_G['referer'], 'member.php?mod=logging')) {
  7.                 $_G['referer'] = $default;
  8.         }
  9.         $_G['referer'] = htmlspecialchars($_G['referer']);
  10.         $_G['referer'] = str_replace('&', '&', $_G['referer']);
  11.         return strip_tags($_G['referer']);
  12. }
复制代码
回复

使用道具 举报

 楼主| hycampuse 发表于 2011-9-13 10:50:07 | 显示全部楼层
otherbank 发表于 2011-9-13 10:14
你是默认的广告位广告,还是自定义广告?

默认的
回复

使用道具 举报

otherbank 发表于 2011-9-13 10:55:49 | 显示全部楼层
hycampuse 发表于 2011-9-13 10:50
默认的

你按照楼上的方法查查代码看看有没有问题
回复

使用道具 举报

 楼主| hycampuse 发表于 2011-9-13 10:59:11 | 显示全部楼层
本帖最后由 hycampuse 于 2011-9-13 10:59 编辑
evenzhou 发表于 2011-9-13 10:26
检查 function_core.php中
dreferer函数是否与下面代码相同


不一样,我从官网上下的X2的代码是这样的
function dreferer($default = '') {
global $_G;$default = empty($default) ? $GLOBALS['_t_curapp'] : '';
$_G['referer'] = !empty($_G['gp_referer']) ? $_G['gp_referer'] : $_SERVER['HTTP_REFERER'];
$_G['referer'] = substr($_G['referer'], -1) == '?' ? substr($_G['referer'], 0, -1) : $_G['referer']; if(strpos($_G['referer'], 'member.php?mod=logging')) {
  $_G['referer'] = $default;
}
$_G['referer'] = htmlspecialchars($_G['referer']);
$_G['referer'] = str_replace('&', '&', $_G['referer']);
$reurl = parse_url($_G['referer']);
if(!empty($reurl['host']) && !in_array($reurl['host'], array($_SERVER['HTTP_HOST'], 'www.'.$_SERVER['HTTP_HOST'])) && !in_array($_SERVER['HTTP_HOST'], array($reurl['host'], 'www.'.$reurl['host']))) {
  if(!in_array($reurl['host'], $_G['setting']['domain']['app']) && !isset($_G['setting']['domain']['list'][$reurl['host']])) {
   $domainroot = substr($_SERVER['HTTP_HOST'], strpos($_SERVER['HTTP_HOST'], '.')+1);
   if(is_array($_G['setting']['domain']['root']) && !in_array($domainroot, $_G['setting']['domain']['root'])) {
    $_G['referer'] = $_G['setting']['domain']['defaultindex'] ? $_G['setting']['domain']['defaultindex'] : 'index.php';
   }
  }
} elseif(empty($reurl['host'])) {
  $_G['referer'] = $_G['siteurl'].'./'.$_G['referer'];
}
return strip_tags($_G['referer']);
}




回复

使用道具 举报

 楼主| hycampuse 发表于 2011-9-13 11:01:39 | 显示全部楼层
otherbank 发表于 2011-9-13 10:55
你按照楼上的方法查查代码看看有没有问题

楼上的代码和比我从论坛上下的要少一段代码。。。
回复

使用道具 举报

evenzhou 发表于 2011-9-13 11:03:43 | 显示全部楼层
hycampuse 发表于 2011-9-13 11:01
楼上的代码和比我从论坛上下的要少一段代码。。。

将这个函数代码替换掉
是从哪里下载呢? download.discuz.vip吗?
检查下载的文件中个函数是否与我提供的一样
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-17 02:50 , Processed in 0.035520 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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