Undefined index: battle, in_tower. Mysql::query: Unknown column 'real_time' in 'where clause'.
This commit is contained in:
parent
3ca97c3bad
commit
c6efca652d
33
main.php
33
main.php
@ -1,7 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
ob_start("ob_gzhandler");
|
ob_start("ob_gzhandler");
|
||||||
session_start();
|
session_start();
|
||||||
$errkom = '';
|
|
||||||
$get = filter_input(INPUT_SERVER, 'QUERY_STRING');
|
$get = filter_input(INPUT_SERVER, 'QUERY_STRING');
|
||||||
if ($get === 'exit') {
|
if ($get === 'exit') {
|
||||||
session_destroy();
|
session_destroy();
|
||||||
@ -17,13 +16,21 @@ $tmaz = time();
|
|||||||
try {
|
try {
|
||||||
db::c()->query('UPDATE `online` SET `real_time` = ?i WHERE `user_id` = ?i', time(), $user['id']);
|
db::c()->query('UPDATE `online` SET `real_time` = ?i WHERE `user_id` = ?i', time(), $user['id']);
|
||||||
} catch (\Krugozor\Database\Mysql\Exception $e) {
|
} catch (\Krugozor\Database\Mysql\Exception $e) {
|
||||||
//echo "<div style='background-color: #ffaaaa;'>Ошибка: " . $e->getMessage() . "<br> В файле: " . $e->getFile() . " (" . $e->getLine() . ")</div>";
|
echo "<div class='debug' '>Ошибка: " . $e->getMessage() . "<br> Стек: " . $e->getTraceAsString() . "</div>";
|
||||||
echo "<div style='background-color: #ffaaaa;'>Ошибка: " . $e->getMessage() . "<br> В файле: " . $e->getTraceAsString() . " (" . $e->getLine() . ")</div>";
|
|
||||||
}
|
|
||||||
if ($user['battle'] != 0) {
|
|
||||||
header('location: fbattle.php');
|
|
||||||
die();
|
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
if ($user['battle'] != 0) {
|
||||||
|
header('location: fbattle.php');
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
} catch (Exception $e) {echo '<div class="debug">Не подтянулся $user[\'battle\'], нет ячейки в базе.</div>';}
|
||||||
|
try {
|
||||||
|
//БС
|
||||||
|
if ($user['in_tower'] == 1) {
|
||||||
|
header('Location: towerin.php');
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
} catch (Exception $e) {echo '<div class="debug">Не подтянулся $user[\'in_tower\'], нет ячейки в базе.</div>';}
|
||||||
|
|
||||||
/* === проверяем соответствие комнаты и скрипта === */
|
/* === проверяем соответствие комнаты и скрипта === */
|
||||||
if (in_array($user['room'], [20, 21, 26, 48, 51, 52, 651, 2655, 2601, 2701, 2702, 2111], 1)) {
|
if (in_array($user['room'], [20, 21, 26, 48, 51, 52, 651, 2655, 2601, 2701, 2702, 2111], 1)) {
|
||||||
@ -103,11 +110,7 @@ if ($user['room'] == 650) {
|
|||||||
header('Location: ul_clans.php');
|
header('Location: ul_clans.php');
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
//БС
|
|
||||||
if ($user['in_tower'] == 1) {
|
|
||||||
header('Location: towerin.php');
|
|
||||||
die();
|
|
||||||
}
|
|
||||||
//Храм древнх
|
//Храм древнх
|
||||||
if ($user['room'] == 203) {
|
if ($user['room'] == 203) {
|
||||||
header('Location: church.php');
|
header('Location: church.php');
|
||||||
@ -1689,7 +1692,11 @@ if (input::get('edit')) {
|
|||||||
<title></title>
|
<title></title>
|
||||||
</HEAD>
|
</HEAD>
|
||||||
<body onLoad="<?= topsethp(); ?>">
|
<body onLoad="<?= topsethp(); ?>">
|
||||||
<?php $online = db::c()->query('SELECT 1 FROM `online` WHERE `real_time` >= ?i', (time() - 60)); ?>
|
<?php
|
||||||
|
try {
|
||||||
|
$online = db::c()->query('SELECT 1 FROM `online` WHERE `real_time` >= ?i', (time() - 60));
|
||||||
|
} catch (Exception $e) {echo '<div class="debug">В таблице online нет ячейки real_time так как неясно что она делает. Ошибка обращения в базу.</div>';
|
||||||
|
?>
|
||||||
<div id=hint3 class=ahint></div>
|
<div id=hint3 class=ahint></div>
|
||||||
<table class="allzeroes">
|
<table class="allzeroes">
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user