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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

完全免费 神州行充值/支付宝/财付通/易宝/网银在线VIP和积分充值插件

[复制链接]
changfei2008 发表于 2009-4-26 20:39:27 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

haoguizeng 发表于 2009-4-26 21:58:54 | 显示全部楼层
帮顶 拿下来看看吧 上次下载了一个说是完整无错的 可还是有点问题
大公无私 顶~~~~~~~
回复

使用道具 举报

mebook 发表于 2009-4-27 09:15:57 | 显示全部楼层
大公无私 顶~~~~~~~
回复

使用道具 举报

abcnic 发表于 2009-4-27 09:25:35 | 显示全部楼层
关注一下
回复

使用道具 举报

aqxsj 发表于 2009-4-27 09:33:08 | 显示全部楼层
本帖最后由 aqxsj 于 2009-4-27 09:34 编辑

顶顶顶顶顶顶顶顶顶顶

本帖子中包含更多资源

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

x
回复

使用道具 举报

liufeng0810 发表于 2009-4-27 09:42:06 | 显示全部楼层
路过支持
回复

使用道具 举报

lsm88 发表于 2009-4-27 12:17:35 | 显示全部楼层
错位问题是由于pay_header.html 调用css 有误

改为以下就可解决
  1. <style type="text/css">
  2. <!--{if !empty($_SGLOBAL['space_theme'])}-->
  3. @import url(template/default/style.css);
  4. @import url(theme/$_SGLOBAL[space_theme]/style.css);
  5. <!--{else}-->
  6. @import url(template/$_SCONFIG[template]/style.css);
  7. <!--{/if}-->
  8. <!--{if !empty($_SGLOBAL['space_css'])}-->
  9. $_SGLOBAL[space_css]
复制代码
回复

使用道具 举报

lsm88 发表于 2009-4-27 12:19:02 | 显示全部楼层
位置在以下字段下

  1. <script language="javascript" type="text/javascript" src="source/script_manage.js"></script>
复制代码
回复

使用道具 举报

lsm88 发表于 2009-4-27 12:22:07 | 显示全部楼层
但是 请楼主说明
修改文件:source/network_space.php
  1. 找到
  2.         $count = empty($_SCONFIG['networkpage'])?1:$_SGLOBAL['db']->result($_SGLOBAL['db']->query($c_sql),0);
  3.         if($count) {
  4.                 $query = $_SGLOBAL['db']->query("$sql LIMIT $start,$perpage");
  5.                 while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  6.                         realname_set($value['uid'], $value['username'], $value['name'], $value['namestatus']);
  7.                         $value['isfriend'] = ($value['uid']==$space['uid'] || ($space['friends'] && in_array($value['uid'], $space['friends'])))?1:0;
  8.                         $fuids[] = $value['uid'];
  9.                         $list[] = $value;
  10.                 }
  11.         }
  12.        
  13.         //在线状态
  14. 替换

  15.         $count = empty($_SCONFIG['networkpage'])?1:$_SGLOBAL['db']->result($_SGLOBAL['db']->query($c_sql),0);
  16.         if($count) {
  17.                                 $vfuids = array();
  18.                                  $vlist = array();
  19.                 $query = $_SGLOBAL['db']->query("$sql LIMIT $start,$perpage");
  20.                 while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  21.                         realname_set($value['uid'], $value['username'], $value['name'], $value['namestatus']);
  22.                         $value['isfriend'] = ($value['uid']==$space['uid'] || ($space['friends'] && in_array($value['uid'], $space['friends'])))?1:0;
  23.                         if ($value[groupid] == $_SCONFIG[vipapp]) {
  24.                         $vfuids[] = $value['uid'];
  25.                         $vlist[] = $value;
  26.                         } else {
  27.                         $nfuids[] = $value['uid'];
  28.                         $nlist[] = $value;
  29.                         }
  30.                 }
  31.                 $fuids = array_merge_recursive($vfuids,$nfuids);
  32.                 $list = array_merge_recursive($vlist,$nlist);
  33.         }
  34.         //在线状态
复制代码
在原文件中没有以上的段落只有
  1.                 $count = empty($_SCONFIG['networkpage'])?1:$_SGLOBAL['db']->result($_SGLOBAL['db']->query($c_sql),0);
  2.                 $multi = multi($count, $perpage, $page, $theurl."&view=$_GET[view]");
  3.         } else {
  4.                 $cache_mode = true;
  5.                 $multi = '';
  6.                 $start = 0;
  7.                 $perpage = $count;
  8.                
  9.                 if($cache_file && file_exists($cache_file) && $_SGLOBAL['timestamp'] - @filemtime($cache_file) < $cache_time*60) {
  10.                         $list_cache = sreadfile($cache_file);
  11.                         $list = unserialize($list_cache);
  12.                 }
  13.         }
  14.         if($count && empty($list)) {
  15.                 $query = $_SGLOBAL['db']->query("$sql LIMIT $start,$perpage");
  16.                 while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  17.                         realname_set($value['uid'], $value['username'], $value['name'], $value['namestatus']);
  18.                         $value['isfriend'] = ($value['uid']==$space['uid'] || ($space['friends'] && in_array($value['uid'], $space['friends'])))?1:0;
  19.                         $fuids[] = $value['uid'];
  20.                         $list[] = $value;
  21.                 }
  22.                 if($cache_mode && $cache_file) {
  23.                         swritefile($cache_file, serialize($list));
  24.                 }
  25.         }
  26.        
  27.         //在线状态
复制代码
如果按照lz要求修改后会无法查询好友,请告知原因
回复

使用道具 举报

lsm88 发表于 2009-4-27 13:56:14 | 显示全部楼层
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-18 10:26 , Processed in 0.053150 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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