chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
class db_sql {
|
||||
var $querynum = 0;
|
||||
function connect($dbhost, $dbuser, $dbpw, $dbname = '', $pconnect = 0) {
|
||||
if($pconnect) {
|
||||
if(!@mysql_pconnect($dbhost, $dbuser, $dbpw)) {
|
||||
$this->halt('Can not connect to MySQL server');
|
||||
}
|
||||
} else {
|
||||
if(!@mysql_connect($dbhost, $dbuser, $dbpw)) {
|
||||
$this->halt('Can not connect to MySQL server');
|
||||
}
|
||||
}
|
||||
|
||||
if($this->version() > '4.1') {
|
||||
global $charset, $dbcharset;
|
||||
if(!$dbcharset && in_array(strtolower($charset), array('gbk', 'big5', 'utf-8'))) {
|
||||
$dbcharset = str_replace('-', '', $charset);
|
||||
}
|
||||
|
||||
if($dbcharset) {
|
||||
mysql_query("SET character_set_connection=$dbcharset, character_set_results=$dbcharset, character_set_client=binary");
|
||||
}
|
||||
|
||||
if($this->version() > '5.0.1') {
|
||||
mysql_query("SET sql_mode=''");
|
||||
}
|
||||
}
|
||||
|
||||
if($dbname) {
|
||||
mysql_select_db($dbname);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function select_db($dbname) {
|
||||
return mysql_select_db($dbname);
|
||||
}
|
||||
|
||||
function fetch_array($query, $result_type = MYSQL_ASSOC) {
|
||||
return mysql_fetch_array($query, $result_type);
|
||||
}
|
||||
|
||||
function query($sql, $type = '') {
|
||||
global $debug, $discuz_starttime, $sqldebug;
|
||||
|
||||
|
||||
$func = $type == 'UNBUFFERED' && @function_exists('mysql_unbuffered_query') ?
|
||||
'mysql_unbuffered_query' : 'mysql_query';
|
||||
if(!($query = $func($sql)) && $type != 'SILENT') {
|
||||
$this->halt('MySQL Query Error', $sql);
|
||||
}
|
||||
|
||||
|
||||
$this->querynum++;
|
||||
return $query;
|
||||
}
|
||||
|
||||
function affected_rows() {
|
||||
return mysql_affected_rows();
|
||||
}
|
||||
|
||||
function error() {
|
||||
return mysql_error();
|
||||
}
|
||||
|
||||
function errno() {
|
||||
return intval(mysql_errno());
|
||||
}
|
||||
|
||||
function result($query, $row) {
|
||||
$query = @mysql_result($query, $row);
|
||||
return $query;
|
||||
}
|
||||
|
||||
function num_rows($query) {
|
||||
$query = mysql_num_rows($query);
|
||||
return $query;
|
||||
}
|
||||
|
||||
function num_fields($query) {
|
||||
return mysql_num_fields($query);
|
||||
}
|
||||
|
||||
function free_result($query) {
|
||||
return mysql_free_result($query);
|
||||
}
|
||||
|
||||
function insert_id() {
|
||||
$id = mysql_insert_id();
|
||||
return $id;
|
||||
}
|
||||
|
||||
function fetch_row($query) {
|
||||
$query = mysql_fetch_row($query);
|
||||
return $query;
|
||||
}
|
||||
|
||||
function fetch_fields($query) {
|
||||
return mysql_fetch_field($query);
|
||||
}
|
||||
|
||||
function version() {
|
||||
return mysql_get_server_info();
|
||||
}
|
||||
|
||||
function close() {
|
||||
return mysql_close();
|
||||
}
|
||||
|
||||
function halt($message = '', $sql = '') {
|
||||
require_once THIS_FILE_ROOT.'/include/db_mysql_error.php';
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
|
||||
<title>Error</title>
|
||||
</head>
|
||||
<body style="background-color:#000000;">
|
||||
<?php
|
||||
$timestamp = time();
|
||||
$errmsg = '';
|
||||
$dberror = $this->error();
|
||||
$dberrno = $this->errno();
|
||||
if($dberrno == 1114) {
|
||||
?>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" align="center" height="85%">
|
||||
<tr align="center" valign="middle">
|
||||
<td>
|
||||
<table cellpadding="10" cellspacing="0" border="0" width="80%" align="center">
|
||||
<tr>
|
||||
<td valign="middle" align="center" bgcolor="#EBEBEB">
|
||||
<br><b style="font-size: 10px">Forum onlines reached the upper limit</b>
|
||||
<br><br><br>Sorry, the number of online visitors has reached the upper limit.
|
||||
<br>Please wait for someone else going offline or visit us in idle hours.
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
<?php
|
||||
function_exists('dexit') ? dexit() : exit();
|
||||
|
||||
} else {
|
||||
|
||||
if($message) {
|
||||
$errmsg = "<div style=\"padding:10px;color:#ffffff;\"><div align=\"center\" style=\"color:#ffffff;\"><input type=\"button\" value=\" Back \" style=\"height:30px;font-size:12pt;font-weight:bold;\" onclick=\"history.back();\"></div>
|
||||
<b>EDT error info</b>: $message\n\n";
|
||||
}
|
||||
$errmsg .= "<b>Time</b>: ".gmdate("Y-n-j g:ia", $timestamp + ($GLOBALS['timeoffset'] * 3600))."\n";
|
||||
if($sql) {
|
||||
$errmsg .= "<b>SQL</b>: ".htmlspecialchars($sql)."\n";
|
||||
}
|
||||
$errmsg .= "<b>Error</b>: $dberror\n";
|
||||
$errmsg .= "<b>Errno.</b>: $dberrno";
|
||||
echo "<p style=\"background: #FFFFFF;\">";
|
||||
echo nl2br($errmsg);
|
||||
echo '</p></div></body></html>';
|
||||
function_exists('dexit') ? dexit() : exit();
|
||||
|
||||
}
|
||||
?>
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user