DIR : /home/kozerus/public_html/dgs/scripts/start_frozen_clocks.php
/home/kozerus/public_html/dgs/scripts
<?php
/*
Dragon Go Server
Copyright (C) 2001- Erik Ouchterlony, Rod Ival
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// Checks and show errors in the Games database.
chdir( '../' );
require_once 'include/std_functions.php';
require_once 'include/board.php';
require_once 'include/move.php';
{
disable_cache();
connect2mysql();
set_time_limit(300); //max. 5min
$logged_in = who_is_logged( $player_row, LOGIN_DEFAULT_OPTS_ADM_OPS );
if ( !$logged_in )
error('login_if_not_logged_in', 'scripts.start_frozen_clock');
if ( $player_row['ID'] <= GUESTS_ID_MAX )
error('not_allowed_for_guest', 'scripts.start_frozen_clock');
if ( !(@$player_row['admin_level'] & ADMIN_DATABASE) )
error('adminlevel_too_low', 'scripts.start_frozen_clock');
$page = $_SERVER['PHP_SELF'];
$page_args = array();
start_html('start_frozen_clocks', 0);
echo ">>>> Should not be used now. Do not run it before a check."; end_html(); exit;
if ( $do_it=@$_REQUEST['do_it'] )
{
function dbg_query($s) {
if ( !mysql_query( $s) )
die("<BR>$s;<BR>" . mysql_error() );
echo " --- fixed. ";
}
echo "<p>*** Fixes errors ***"
."<br>".anchor(make_url($page, $page_args), 'Just show it')
."</p>";
}
else
{
function dbg_query($s) { echo " --- query:<BR>$s; ";}
$tmp = array_merge($page_args,array('do_it' => 1));
echo "<p>(just show needed queries)"
."<br>".anchor(make_url($page, $page_args), 'Show it again')
."<br>".anchor(make_url($page, $tmp), '[Validate it]')
."</p>";
}
$query = "SELECT Games.ID AS gid, ClockUsed, LastTicks, Clock.Ticks " .
"FROM Games INNER JOIN Clock ON Clock.ID=Games.ClockUsed " .
"WHERE Games.Status" . IS_STARTED_GAME .
"HAVING Clock.Ticks < LastTicks";
$result = mysql_query($query);
$n= (int)@mysql_num_rows($result);
echo "\n<br>=> result: $n rows<p></p>\n";
if ( $n > 0 )
while ( $row = mysql_fetch_assoc( $result ) )
{
echo '<hr>Game_ID: ' . $row["gid"] . ": " .
"ClockUsed: " . $row['ClockUsed'] .
", LastTicks: " . $row['LastTicks'] .
", Clock.Ticks: " . $row['Ticks'] .
"<br>\n";
dbg_query("UPDATE Games " .
"SET LastTicks=" . $row['Ticks'] . " " .
"WHERE ID=" . $row['gid'] . " LIMIT 1");
}
mysql_free_result($result);
echo "<hr>Done!!!\n";
end_html();
}
?>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer