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

📄 configuration.php

📁 joomla的系统插件,用于用户的管理,可以开发或阻塞用户
💻 PHP
字号:
<?php
/**
* @package Blocklist
* @copyright (C) 2006 Websmurf
* @author Websmurf
**/

// ensure this file is being included by a parent file
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );

$bl_config['pagecontent'] = '<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>Access blocked</title>
	<link rel="stylesheet" href="templates/css/offline.css" type="text/css" />
	<link rel="shortcut icon" href="images/favicon.ico" />
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<p>&nbsp;</p>
<table width="550" align="center" class="outline">
<tr>
	<td width="60%" height="50" align="center">
	<img src="images/joomla_logo_black.jpg" alt="Joomla! Logo" align="middle" />
	</td>
</tr>
<tr>
	<td align="center">
		<h1>
			Access blocked
		</h1>
		<br />
		{REASON}
	</td>
</tr>
</table>
</body>
</html>';

?>

⌨️ 快捷键说明

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