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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑问] 紧急求助SS7.0最上部的登录条提示如何去除??

[复制链接]
guo_cc 发表于 2010-1-20 18:42:44 | 显示全部楼层 |阅读模式
本帖最后由 guo_cc 于 2010-01-20 18:57 编辑

这个黄颜色的提示框如何去除啊?在DW中全站搜索相关文字,怎么也找不到位置。



应该在下面的代码中改,究竟是那句代码?
  1. <?php

  2. /*
  3.         [SupeSite] (C) 2007-2009 Comsenz Inc.
  4.         $Id: batch.panel.php 11538 2009-03-09 08:15:35Z $
  5. */

  6. include_once('./common.php');
  7. include_once(S_ROOT.'./language/batch.lang.php');

  8. $uid = $_SGLOBAL['supe_uid'];
  9. $ucurl = avatar($uid);
  10. $siteurl = S_URL_ALL;
  11. if(!empty($uid)) {
  12.         if($channels['menus']['bbs']) {
  13.                 $bbshtml = ' | <a href="'.$_SC['bbsurl'].'" target="_blank">'.$blang['forum_visit'].'</a>';
  14.         }
  15.         if($channels['menus']['uchblog'] || $channels['menus']['uchimage']) {
  16.                 $uchhtml = ' | <a href="'.$_SC['uchurl'].'" target="_blank">'.$blang['home_visit'].'</a>';
  17.         }
  18.         $showpost = 0;
  19.         $showposturl = '';
  20.         $divhtml = '<div id="contribute_op" style="display:none;"><ul>';
  21.         if(!in_array('news', $_SCONFIG['closechannels']) && !empty($_SGLOBAL['group']['managespacenews'])) {
  22.                 $divhtml .= '<li><a href="'.$siteurl.'/admincp.php?action=spacenews&op=add" target="_blank" onclick="hidendivop();">'.$lang['news'].'</a></li>';
  23.                 $showpost++;
  24.                 $showposturl = $siteurl.'/admincp.php?action=spacenews&op=add';
  25.         }
  26.        
  27.         include_once(S_ROOT.'./function/model.func.php');
  28.         $midarr = getuserspacemid();
  29.         if(!empty($midarr)) {
  30.                 foreach($midarr as $tmpkey => $tmpvalue) {               
  31.                         $divhtml .= '<li><a href="'.$siteurl.'/admincp.php?action=modelmanages&mid='.$tmpvalue['mid'].'&op=add" onclick="hidendivop();" target="_blank">'.$tmpvalue['modelalias'].'</a></li>';
  32.                         $showpost++;
  33.                         $showposturl = $siteurl.'/admincp.php?action=modelmanages&mid='.$tmpvalue['mid'].'&op=add';
  34.                 }
  35.         }
  36.        
  37.         if($showpost == 1) {
  38.                 $showposturl = "document.write('<div class="user_op"> <a href="$showposturl" class="contribute_txt" target="_blank">$lang[pannel_contribution]</a> ');";
  39.         } elseif($showpost > 1) {
  40.                 $showposturl = "document.write('<div class="user_op"> <a href="javascript:contributeop();" class="contribute_txt">$lang[pannel_contribution]</a> ');";
  41.         }
  42.        
  43.         $divhtml .= '</ul></div>';
  44.        
  45. print <<<END

  46.         function contributeop() {

  47.                 if($('contribute_op').style.display != 'block') {

  48.                         $('contribute_op').style.display = 'block';

  49.                 } else {

  50.                         $('contribute_op').style.display = 'none';

  51.                 }        

  52.         }

  53.         function hidendivop(){

  54.                 $('contribute_op').style.display = 'none';

  55.         }

  56.         document.write('<div class="login_ext">');

  57.         document.write('<p>欢迎回来 <a href="http://kaixin.nhsou.cn/space.php?uid=$uid">$_SGLOBAL[supe_username]</a> [<a href="$siteurl/batch.login.php?action=logout">$blang[safe_logout]</a>]');

  58.         document.write('<a href="http://kaixin.nhsou.cn/space.php?uid=$uid">$blang[my_space]</a>');

  59.         document.write('| <a href="$siteurl/admincp.php" target="_blank">管理我的信息</a>');

  60.         document.write('</div>');

  61. END;

  62. } else {
  63.         $formhash = formhash();
  64.         print <<<END
  65.         var noseccode = $_SCONFIG[noseccode];
  66.         document.write('<form id="login_box" action="$siteurl/batch.login.php?action=login" method="post">');
  67.         document.write('<input type="hidden" name="formhash" value="$formhash" />');
  68.         document.write('<label>欢迎登陆:</label> <input type="text"  name="username" class="input_tx" size="18" onfocus="addseccode();" />');
  69.         document.write('<label>密码:</label> <input type="password" name="password" class="input_tx" size="18" onfocus="addseccode();" />');
  70.         document.write('<p id="login_authcode_input" style="display:none"><label>$lang[verification_code]:</label> <input type="text" class="input_tx" name="seccode" size="10" onfocus="showseccode()"; /> <a href="javascript:updateseccode();">$lang[changge_verification_code]</a></p>');
  71.         document.write('<div id="login_showclose" style="display:none"><a href="javascript:hidesec();"></a></div>');
  72.         document.write('<label>');
  73.         document.write('<input id="cookietime" type="checkbox" value="315360000" name="cookietime" class="input_remember"/>');
  74.         document.write('<label class="label_remember" for="cookietime">$blang[i_remember]</label>');
  75.         document.write('<input type="submit" name="loginsubmit" class="input_sub" value="$blang[login]" />');
  76.         document.write('</label>');
  77.         document.write('<a href="$siteurl/do.php?action=register">注册家园</a> | <a href="$siteurl/do.php?action=lostpasswd">找回密码</a>');
  78.         document.write('</form>');
  79. END;
  80. }

  81. /**
  82. * 取得用户后台模型mid
  83. * return array
  84. */
  85. function getuserspacemid() {
  86.        
  87.         $cachefile = S_ROOT.'./cache/model/model.cache.php';
  88.         $cacheinfo = '';
  89.         if(file_exists($cachefile)) {
  90.                 include_once($cachefile);
  91.         }
  92.         if(!empty($cacheinfo) && is_array($cacheinfo)) {
  93.                 return $cacheinfo;
  94.         } else {
  95.                 include_once(S_ROOT.'./function/cache.func.php');
  96.                 return updateuserspacemid();
  97.         }
  98. }

  99. ?>
复制代码

本帖子中包含更多资源

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

x
qdcaishen 发表于 2010-1-20 22:49:27 | 显示全部楼层
  1.         document.write('<div class="login_ext">');



  2.         document.write('<p>欢迎回来 <a href="http://kaixin.nhsou.cn/space.php?uid=$uid">$_SGLOBAL[supe_username]</a> [<a href="$siteurl/batch.login.php?action=logout">$blang[safe_logout]</a>]');



  3.         document.write('<a href="http://kaixin.nhsou.cn/space.php?uid=$uid">$blang[my_space]</a>');



  4.         document.write('| <a href="$siteurl/admincp.php" target="_blank">管理我的信息</a>');



  5.         document.write('</div>');

复制代码
  1.         document.write('<form id="login_box" action="$siteurl/batch.login.php?action=login" method="post">');

  2.         document.write('<input type="hidden" name="formhash" value="$formhash" />');

  3.         document.write('<label>欢迎登陆:</label> <input type="text"  name="username" class="input_tx" size="18" onfocus="addseccode();" />');

  4.         document.write('<label>密码:</label> <input type="password" name="password" class="input_tx" size="18" onfocus="addseccode();" />');

  5.         document.write('<p id="login_authcode_input" style="display:none"><label>$lang[verification_code]:</label> <input type="text" class="input_tx" name="seccode" size="10" onfocus="showseccode()"; /> <a href="javascript:updateseccode();">$lang[changge_verification_code]</a></p>');

  6.         document.write('<div id="login_showclose" style="display:none"><a href="javascript:hidesec();"></a></div>');

  7.         document.write('<label>');

  8.         document.write('<input id="cookietime" type="checkbox" value="315360000" name="cookietime" class="input_remember"/>');

  9.         document.write('<label class="label_remember" for="cookietime">$blang[i_remember]</label>');

  10.         document.write('<input type="submit" name="loginsubmit" class="input_sub" value="$blang[login]" />');

  11.         document.write('</label>');

  12.         document.write('<a href="$siteurl/do.php?action=register">注册家园</a> | <a href="$siteurl/do.php?action=lostpasswd">找回密码</a>');

  13.         document.write('</form>');
复制代码
这些都去掉。但是我不建议这样。。

建议修改后台模板,直接去掉script代码。
回复

使用道具 举报

 楼主| guo_cc 发表于 2010-1-21 09:42:57 | 显示全部楼层
回复 2# qdcaishen


    2楼建议我没办法实施啊!!!!怎么办??????
回复

使用道具 举报

qdcaishen 发表于 2010-1-21 10:00:03 | 显示全部楼层
回复 3# guo_cc


    不能把?是不会呢?还是没有FTp权限?
回复

使用道具 举报

dongdong0925 发表于 2010-1-21 10:22:37 | 显示全部楼层
这个应该是在脚本里的
回复

使用道具 举报

 楼主| guo_cc 发表于 2010-1-21 11:04:51 | 显示全部楼层
回复 5# dongdong0925


    可是在那个脚本里呢?我倒是晕死啊
回复

使用道具 举报

 楼主| guo_cc 发表于 2010-1-21 11:06:09 | 显示全部楼层
回复 4# qdcaishen


    不能把这么多代码删除,因为这是登录主要的入口。主机是自己的,所以不存在没有修改权限的问题。
回复

使用道具 举报

dongdong0925 发表于 2010-1-21 11:07:56 | 显示全部楼层
楼主用的是别人的模板吧     问问原作者吧   光你发的这段代码看不出来在哪个里面
回复

使用道具 举报

qdcaishen 发表于 2010-1-21 11:10:52 | 显示全部楼层
回复 6# guo_cc


    在模板文件里。bOdy之后的header里。。开头就是。。
回复

使用道具 举报

dongdong0925 发表于 2010-1-21 11:11:19 | 显示全部楼层
我发现好像是这段代码啊   你可以试试
  1. document.write('<p id="login_authcode_input" style="display:none"><label>$lang[verification_code]:</label> <input type="text" class="input_tx" name="seccode" size="10" onfocus="showseccode()"; /> <a href="javascript:updateseccode();">$lang[changge_verification_code]</a></p>');
复制代码
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-18 20:40 , Processed in 0.041682 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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