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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已答复] 换了模版后首页登陆框登陆后不显示的问题[【基本解决】

[复制链接]
tufeichina 发表于 2009-12-2 09:48:06 | 显示全部楼层 |阅读模式
本帖最后由 tufeichina 于 2009-12-3 09:46 编辑
  1. <div id="append_parent"></div>
  2. <div id="ajaxwaitid"></div>
  3. <div id="header">
  4. <div id="header_content">
  5. <div class="user_info">
  6. <script src="{S_URL}/batch.panel.php?rand=0{eval echo rand(1, 999999)}" type="text/javascript" language="javascript"></script>
  7. <div class="time_ext">
复制代码
上面这段是我首页的登陆框代码

下面这段是我的batch.panel.php代码
  1. <?php

  2. /*
  3.         [SupeSite] (C) 2007-2009 Comsenz Inc.
  4.         $Id: batch.panel.php 11538 2009-03-09 08:15:35Z zhaofei $
  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://www.caoxianshw.com/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://www.caoxianshw.com/space.php?uid=$uid" target="_blank">$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();">&nbsp;</a></div>');
  72.         document.write('<div class="clearfix">');
  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('</div>');
  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. ?>
复制代码
我的CSS也一并贴出来:
  1. /* Header style */
  2. #header { width:996px; height:117px; padding-top:3px; overflow:hidden; background:#FFF;margin:0 auto;color:#FFF;}
  3.         #header_content { width:950px; margin:0 auto; }
  4.         #header .user_info { height:54px; overflow:hidden; background:url(../images/login_bg.gif) repeat-x center top;}
  5.         #header .user_info form { float:left;margin-left:10px;margin-top:8px;}
  6.         #header .user_info .input_tx { margin-right:5px;}
  7.         #header .user_info .rss { float:right; margin-top:1px; padding-left:15px; background:url(../images/icon_rss.gif) no-repeat 0 3px; }
  8.         #header .user_info p { padding:4px 0 0 0; }
  9.         #header .user_info a { margin:0 3px; color:#FFF;}
  10.         #header .user_info input, #header .user_info label { float:left;}
  11.                 #header .user_info .input_tx { margin-left:3px;}
  12.                 #header .user_info .label { margin-left:3px;}
  13.                 .input_remember { margin:5px 0 0 2px!important; *margin:1px 0 0 0!important;}
  14.                 .label_remember { margin-right:5px; padding:1px 0 0 3px; *padding:2px 0 0 0;}
  15.         #header .login_ext { float:left; margin:0 0 0 6px; margin-top:5px;}
  16.         #header .time_ext { float:right; margin-top:8px;margin-right:6px;}
  17.         #header h2 { float:left; margin:3px 0 0 0; }
  18.                 #header h2 img { width:210px; height:55px; }
  19.                 #header .ad_header { float:right; margin:15px 0 0 0; text-align:right; }


  20. /*============================================= login pages style  */
  21. #login { width:900px; overflow:hidden; margin:25px auto 20px; padding:2px; border:3px solid #E1E8F0; }
  22.         #login  table { margin:25px 0 0 70px; }
  23.         #login table th, #login table td { padding:10px 0; vertical-align:top; }
  24.         #login table th { padding:12px 12px 0 0; text-align:right; }
  25.         #login .input_select { width:180px; height:22px; }
  26.         #login .box_r { width:45%; overflow:hidden; padding:5% 0 0 5%; height:280px; background:#EEF1F6; }
  27.         #login .box_r h2 { padding-bottom:8px; color:#30954A7; font-size:14px; }
  28.         #login .box_r li { margin-bottom:8px; padding-left:12px; background:url(../images/arrow_li.gif) no-repeat 0 5px; *background-position:25px 5px; color:#333; }
  29.         #login .box_r li a { color:#2C629E; }

  30. /* User info style */
  31. #user_info {}
  32.         #user_info h1 { width:860px; height:32px; overflow:hidden; margin:12px 0 20px; background:url(../images/userinfo_captionbg.gif) no-repeat; text-indent:-9999px; }
  33.         .userinfo_content { overflow:hidden; background:url(../images/user_info_bg.gif) repeat-y 10px 0;}
  34.         .userinfo_content .box_l { width:240px; overflow:hidden; padding:40px 0; }
  35.                 .userinfo_content .box_l dl { margin:0 0 0 40px; overflow:hidden; line-height:22px; }
  36.                 .userinfo_content .box_l dt { width:135px; }
  37.                 .userinfo_content .box_l h2 { color:#056BB5; }
  38.                 .userinfo_content .box_l dd {}
  39.                 .userinfo_content .box_l img { width:120px; padding:2px; border:1px solid #C9C9CB; background:#FFF; }
  40.         .userinfo_content .box_r { width:650px; overflow:hidden; padding:40px 0 25px; }
  41.                 .userinfo_content .box_r h3 { padding:0 0 3px 35px; color:#056BB5; }
  42.                 .userinfo_content .box_r ul { overflow:hidden; padding:0 0 6px 35px; }
  43.                 .userinfo_content .box_r ul li{ float:left; width:270px; height:26px; overflow:hidden; margin-right:35px; line-height:26px; }
  44.                 .userinfo_content .box_r ul li span{ float:right;  }

复制代码
未登录时打开网页显示正常,登录也可以登录,登录后就是显示不了登陆框。请大侠解决………………


算是基本解决,原来是模板和适用版本的问题!安装个相应的版本的SS就好了……
wangman829 发表于 2009-12-3 08:14:24 | 显示全部楼层
回复

使用道具 举报

lidq.jingwu 发表于 2009-12-3 09:09:45 | 显示全部楼层
你的网址是?是否是用的官方模板?
回复

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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