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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 后台如何设置“随便看看为首页”

[复制链接]
djdoudou 发表于 2008-5-29 20:11:58 | 显示全部楼层 |阅读模式
后台如何设置“随便看看为首页”

麻烦知道的人告诉我一下尽量详
 楼主| djdoudou 发表于 2008-5-29 20:14:15 | 显示全部楼层
找了半天没找到
谢谢了!~
回复

使用道具 举报

 楼主| djdoudou 发表于 2008-5-29 20:31:38 | 显示全部楼层
没人知道啊?                  :
回复

使用道具 举报

 楼主| djdoudou 发表于 2008-5-30 13:04:26 | 显示全部楼层
:)
没人帮忙~~~~~~~``
回复

使用道具 举报

cnusa 发表于 2008-5-30 13:10:18 | 显示全部楼层
我教你
回复

使用道具 举报

 楼主| djdoudou 发表于 2008-5-30 13:16:41 | 显示全部楼层
方法?           
回复

使用道具 举报

www6980 发表于 2010-10-20 11:28:02 | 显示全部楼层
我也想知道
回复

使用道具 举报

flowerao 发表于 2010-10-20 21:42:37 | 显示全部楼层
本帖最后由 flowerao 于 2010-10-20 21:43 编辑

把index.php改为:

  1. <?php
  2. /*
  3. [UCenter Home] (C) 2007-2008 Comsenz Inc.
  4. $Id: index.php 13003 2009-08-05 06:46:06Z liguode $
  5. */

  6. include_once('./common.php');

  7. if(is_numeric($_SERVER['QUERY_STRING'])) {
  8. showmessage('enter_the_space', "space.php?uid=$_SERVER[QUERY_STRING]", 0);
  9. }

  10.         $feedlist = array();
  11.         $query = $_SGLOBAL['db']->query("SELECT * FROM ".tname('feed')." WHERE friend='0' ORDER BY dateline DESC LIMIT 0,10");
  12.         while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  13.                 realname_set($value['uid'], $value['username']);
  14.                 $feedlist[] = $value;
  15.         }
  16.         foreach ($feedlist as $key => $value) {
  17.                 $feedlist[$key] = mkfeed($value);
  18.         }
  19. //二级域名
  20. if(!isset($_GET['do']) && $_SCONFIG['allowdomain']) {
  21. $hostarr = explode('.', $_SERVER['HTTP_HOST']);
  22. $domainrootarr = explode('.', $_SCONFIG['domainroot']);
  23. if(count($hostarr) > 2 && count($hostarr) > count($domainrootarr) && $hostarr[0] != 'www' && !isholddomain($hostarr[0])) {
  24.   showmessage('enter_the_space', $_SCONFIG['siteallurl'].'space.php?domain='.$hostarr[0], 0);
  25. }
  26. }if($_SGLOBAL['supe_uid']) {
  27.         //已登录,直接跳转个人首页
  28.         showmessage('enter_the_space', 'space.php?do=home', 0);
  29. }else{
  30.         //未登录,直接跳转随便看看
  31.         showmessage('enter_the_space', 'network.php', 0);
  32. }

  33. if(empty($_SCONFIG['networkpublic'])) {

  34. $cachefile = S_ROOT.'./data/cache_index.txt';
  35. $cachetime = @filemtime($cachefile);

  36. $spacelist = array();
  37. if($_SGLOBAL['timestamp'] - $cachetime > 900) {
  38.   //20位热门用户
  39.   $query = $_SGLOBAL['db']->query("SELECT s.*, sf.resideprovince, sf.residecity
  40.    FROM ".tname('space')." s
  41.    LEFT JOIN ".tname('spacefield')." sf ON sf.uid=s.uid
  42.    ORDER BY s.friendnum DESC LIMIT 0,20");
  43.   while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  44.    $spacelist[] = $value;
  45.   }
  46.   swritefile($cachefile, serialize($spacelist));
  47. } else {
  48.   $spacelist = unserialize(sreadfile($cachefile));
  49. }

  50. //应用
  51. $myappcount = 0;
  52. $myapplist = array();
  53. if($_SCONFIG['my_status']) {
  54.   $myappcount = $_SGLOBAL['db']->result($_SGLOBAL['db']->query("SELECT COUNT(*) FROM ".tname('myapp')." WHERE flag>='0'"), 0);
  55.   if($myappcount) {
  56.    $query = $_SGLOBAL['db']->query("SELECT appid,appname FROM ".tname('myapp')." WHERE flag>=0 ORDER BY flag DESC, displayorder LIMIT 0,7");
  57.    while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  58.     $myapplist[] = $value;
  59.    }
  60.   }
  61. }
  62.   
  63. //实名
  64. foreach ($spacelist as $key => $value) {
  65.   realname_set($value['uid'], $value['username'], $value['name'], $value['namestatus']);
  66. }
  67. realname_get();

  68. $_TPL['css'] = 'network';
  69. include_once template("index");
  70. } else {
  71. include_once template("index");
  72. }

  73. ?>
复制代码

回复

使用道具 举报

huazhongjiu 发表于 2010-12-17 15:32:22 | 显示全部楼层
让我们将事前的忧虑,换为事前的思考和计划吧!
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-31 17:00 , Processed in 0.032485 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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