filelist.php
资源名称:BBWPS.rar [点击查看]
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
PHP
- <?php
- /*
- [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
- This is NOT a freeware, use is subject to license terms
- 时间:2007年12月
- 描述:文件管理
- */
- require_once("../../class/template_class.php");
- require_once("../../class/mysql_class.php");
- require_once("../../config.php");
- require_once("../../config/baseCheckCode.php");
- require_once("../../function/checkModuleSession.php");
- isLogin("../../$sessionPath/");
- require_once("shortcut.list");
- define('IN_SELF', 'index');
- require_once ("./global.php");
- //session_start();
- require_once ($T_language);
- //if($_SESSION[$T_session]){
- require_once ($T_function);
- $path = urldecode(empty($_GET['path'])?"root":$_GET['path']);
- if($path = checkpath($path)){
- $currentpath = urlencode($path);
- if(strtolower(truepath($path))==strtolower(truepath($T_Recycled,2))){
- $ifdelete = 3;
- }else{
- $ifdelete = 0;
- }
- require_once($T_setup);
- }else{
- //echo $T_lang['error'][0];
- exit;
- }
- ?>