X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbriskin5%2Fstatadm.php;h=96b79cdc3bb53ed1a45d3858df86d74812bc0053;hb=fd0382ef2ff8216bc3880fc61cf0178d9f0f75e9;hp=ce73f0a0310b1089ad63f86be921270290a01b01;hpb=1f93e1d341ffdad5636b20254ac6cc932029f734;p=brisk.git diff --git a/web/briskin5/statadm.php b/web/briskin5/statadm.php index ce73f0a..96b79cd 100644 --- a/web/briskin5/statadm.php +++ b/web/briskin5/statadm.php @@ -2,7 +2,7 @@ /* * brisk - statadm.php * - * Copyright (C) 2009 Matteo Nastasi + * Copyright (C) 2009-2011 Matteo Nastasi * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it @@ -20,8 +20,6 @@ * not, write to the Free Software Foundation, Inc, 59 Temple Place - * Suite 330, Boston, MA 02111-1307, USA. * - * $Id$ - * */ /* @@ -35,7 +33,9 @@ TODO: */ -ini_set("max_execution_time", "120"); +$G_base = "../"; + +ini_set("max_execution_time", "240"); require_once("../Obj/brisk.phh"); require_once("../Obj/auth.phh"); @@ -50,7 +50,7 @@ function main() $wee = array(); echo "inizio
"; - fflush(); + flush(); if ($pazz != $G_alarm_passwd) exit; @@ -67,10 +67,11 @@ function main() fclose($fp_start); } - $userdb = new LoginDB(); + $bdb = new BriskDB(); + $bdb->users_load(); - for ($i = 0 ; $i < $userdb->count() ; $i++) { - $login = $userdb->getlogin_byidx($i); + for ($i = 0 ; $i < $bdb->count() ; $i++) { + $login = $bdb->getlogin_byidx($i); $tri[$i] = new Ptsgam($login); $mon[$i] = new Ptsgam($login); $wee[$i] = new Ptsgam($login); @@ -125,7 +126,7 @@ function main() for ($i = 0 ; $i < BRISKIN5_PLAYERS_N ; $i++) { // echo $p." i) ".$i."
"; $username = $ar[9+($i*2)]; - if (($item = $userdb->getitem_bylogin($username, &$id)) == FALSE) { + if (($item = $bdb->getitem_bylogin($username, &$id)) == FALSE) { echo "WARNING: the user [".$username."] NOT EXISTS!
"; continue; }