本帖不适合SS5.5及以上版本
部分站长反应,使用SupeSite时,在页面的用户面板登录后,页面跳转后,依然显示没有登录,需要刷新一下页面,才显示正常的登录状态。
出现这样的现象的问题,是js文件在IE浏览器里面是缓存的原因。
可以这样解决
修正以下模板文件:
templates\default\bbs_index.html.php (16)
templates\default\blog_index.html.php (16)
templates\default\file_index.html.php (15)
templates\default\goods_index.html.php (15)
templates\default\image_index.html.php (15)
templates\default\index.html.php (107)
templates\default\link_index.html.php (15)
templates\default\news_index.html.php (16)
templates\default\spaces_index.html.php (15)
找到
复制内容到剪贴板
代码:
<script src="{S_URL}/batch.panel.php" type="text/javascript" language="javascript"></script>替换为
复制内容到剪贴板
代码:
<script src="{S_URL}/batch.panel.php?rand={eval echo rand(1, 999999)}" type="text/javascript" language="javascript"></script>试试,应该就没有问题了