⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.php

📁 在传统CMS文章内容管理功能基础上
💻 PHP
字号:
<?PHP/*    [BBWPS!] (C)2006-2010 小蜜蜂版权所有.	  This is NOT a freeware, use is subject to license terms*/error_reporting(0);require_once("../function/checkBaseSession.php");require_once("../config.php");require_once("../class/mysql_class.php");require_once("../function/function.php");require_once("../config/baseCheckCode.php");require_once("../class/template_class.php");if(file_exists("../data/module.php")){	include_once("../data/module.php");}checkBaseSession("../$session/");$_SESSION = getBBWPSSession("../$session/");$popedom = $_SESSION['BBWPS_BASE_POPEDOM'];$p= new Template("./template");$p->set_file("handle","index.html");$p->parse("output","handle");$p->p("output");exit;if(md5("BBWPS_MODULE_ALL")==$popedom){	$p= new Template("./template");	$p->set_file("handle","index.html");	$p->parse("output","handle");	$p->p("output");}else {	$popedomStr = explode(";",$popedom);	foreach ($moduleArray as $mArray){		for ($i=0;$i<count($popedomStr);$i++){			if($popedomStr[$i]==md5($mArray['dns'])){				$md5Num = rand(1,9);				$bbwpsModuleString = MakeMd5($mArray['dns'],$md5Num).$md5Num;				exit ("<script language=javascript>window.location='".$mArray['dns']."$adminDir/$moduleLoginFile?check=".urlencode($bbwpsModuleString)."&basecheckcode=".urlencode(MakeMd5($baseCheckCode,$md5Num).$md5Num)."&bbwpsbaseusername=".urlencode($_SESSION['BBWPS_BASE_USERNAME'])."';</script>");			}		}	}}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -