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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑问] 刷新不显示,点转到就会显示。

[复制链接]
fjpcjq 发表于 2010-1-14 19:38:27 | 显示全部楼层 |阅读模式
我的网站,使用的是平湖模板。ss7.0

现在有一个很重要的问题。

打开网站后,刷新网页就不显示了。 10次有8次出现这样的问题。   点转到就又可以正常显示。
登入后,这样的问题更明显。测试帐号:good 密码:123456

网址:http://www.pc186.com      


在很多台电脑上试过,肯定不是本地ie的问题。



去掉 header.html.php文件中的
<script src="{S_URL}/batch.panel.php?rand={eval echo rand(1, 999999)}" type="text/javascript" language="javascript"></script>

就不会出现上面那样的情况了,但是首页用记登入框也没了。
 楼主| fjpcjq 发表于 2010-1-14 19:42:34 | 显示全部楼层
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 $
  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.        
  29.         if($showpost == 1) {
  30.                 $showposturl = "document.write('<div class="user_op"> <a href="$showposturl" class="contribute_txt" target="_blank">$lang[pannel_contribution]</a> ');";
  31.         } elseif($showpost > 1) {
  32.                 $showposturl = "document.write('<div class="user_op"> <a href="javascript:contributeop();" class="contribute_txt">$lang[pannel_contribution]</a> ');";
  33.         }
  34.        
  35.         $divhtml .= '</ul></div>';
  36.        
  37. print <<<END

  38.         function contributeop() {

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

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

  41.                 } else {

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

  43.                 }        

  44.         }

  45.         function hidendivop(){

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

  47.         }

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

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

  50.         document.write('<a href="http://www.pc186.com/home/space.php?uid=$uid">$blang[my_space]</a>');

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

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

  53. END;

  54. } else {
  55.         $formhash = formhash();
  56.         print <<<END
  57.         var noseccode = $_SCONFIG[noseccode];
  58.         document.write('<form id="login_box" action="$siteurl/batch.login.php?action=login" method="post">');
  59.         document.write('<input type="hidden" name="formhash" value="$formhash" />');
  60.         document.write('<label>欢迎登陆:</label> <input type="text"  name="username" class="input_tx" size="18" onfocus="addseccode();" />');
  61.         document.write('<label>密码:</label> <input type="password" name="password" class="input_tx" size="18" onfocus="addseccode();" />');
  62.         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>');
  63.         document.write('<div id="login_showclose" style="display:none"><a href="javascript:hidesec();"></a></div>');
  64.         document.write('<label>');
  65.         document.write('<input id="cookietime" type="checkbox" value="315360000" name="cookietime" class="input_remember"/>');
  66.         document.write('<label class="label_remember" for="cookietime">$blang[i_remember]</label>');
  67.         document.write('<input type="submit" name="loginsubmit" class="input_sub" value="$blang[login]" />');
  68.         document.write('</label>');
  69.         document.write('<a href="$siteurl/do.php?action=register">注册家园</a> | <a href="http://bbs.pc186.com/thread-59866-1-1.html"  target="_blank">找回密码</a>');
  70.         document.write('</form>');
  71. END;
  72. }


  73. ?>
复制代码
回复

使用道具 举报

 楼主| fjpcjq 发表于 2010-1-14 19:43:05 | 显示全部楼层
大家帮帮忙。帮我看看哪里出个问题。要怎么改。
回复

使用道具 举报

Alice.Girl 发表于 2010-1-14 21:38:14 | 显示全部楼层
回复 3# fjpcjq
貌似和我之前遇到的情况相似
在这个帖子看看能找到解决办法么!
https://discuz.dismall.com/thread-1544593-1-1.html
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-18 15:47 , Processed in 0.021630 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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