我装了DZ6.0EXP,又装了IIS,打开首页出现源代码,不知道哪里的问题.- <?php
- /*
- [Discuz!] (C)2001-2007 Comsenz Inc.
- This is NOT a freeware, use is subject to license terms
- $Id: index.php 10486 2007-09-03 06:53:29Z liuqiang $
- */
- define('CURSCRIPT', 'index');
- require_once './include/common.inc.php';
- require_once DISCUZ_ROOT.'./include/forum.func.php';
- $discuz_action = 1;
- if($cacheindexlife && !$discuz_uid && $showoldetails != 'yes' && (!$_DCACHE['settings']['frameon'] || $_DCACHE['settings']['frameon'] && $_GET['frameon'] != 'yes') && empty($gid)) {
- $indexcache = getcacheinfo(0);
- if($timestamp - $indexcache['filemtime'] > $cacheindexlife) {
- @unlink($indexcache['filename']);
- define('CACHE_FILE', $indexcache['filename']);
- $styleid = $_DCACHE['settings']['styleid'];
- } elseif($indexcache['filename']) {
- @readfile($indexcache['filename']);
- $debug && debuginfo();
复制代码 |