←  Pytania

AMXX.pl: Support AMX Mod X i SourceMod

»

[Pytanie] Nie wyświetlają mi się wszystkie...

Name166 - zdjęcie Name166 03.01.2012

Mam problem bo nie wyświetlają mi się Nazwy klas w statystykach WWW
Proszę o SS
Posted Image
Nie wiem co się dzieje i proszę o pomoc

Daję Index.php statystyk WWW

<?php
/**
* Statistics for mod
* Call of Duty MW Mod by Peyote (Final!)
*  for Counter Strike
*
* Webdeveloper: R3X & SSB
* Support: www.AMXX.pl
* Please, do not add your footer.
* Prosimy o niedodawanie własnej stopki (np. created by Stefan).
* Designer: R3X (default) & SSB (blue)
*
* 1.4.1
*	  - poprawka z Read Failed
*
* 1.4.0
*	  - nowy Cod Mod
* 1.31
* - config.php $password issue
* - last update time display
* 1.3
* - extended config.php
* 1.2
*  - added update.php file
* 1.1
* - catching exceptions
*  - new theme (blue)
* 1.0
*  - first release
*/
include("config.php");

define("TITLE", $tytul);
define("HEADER", $tytul_strony);
define("STATSFILE", "CodMod.vault");
define("TOPNUM",15);
define("NUM_PER_PAGE", 20);
//Paginator
define("PAGELINKS", 5);
//Filtering
define("FILTER_TOP", 0);
define("FILTER_ALL", 1);
define("FILTER_CLASS", 2);
define("FILTER_NAME", 3);
define("FILENAME","index.php");
class Classes{
public static $names = array(
  "NONE",
  "Komandos",
  "wsparcie ogniowe",
  "Snajper",
  "Nozownik",
  "Naukowiec",
  "Dres",
  "tTalib",
  "Taktyk",
  "Ninja",
  "Admiral",
  "Rusher",
  "Strzelec wyborowy",
  "Obronca",
  "Medyk",
  "Saper",
  "Demolitions",
  "Profesjonalny lekarz",
  "Speedhacker",
  "Telegrafista",
  "Terminator",
  "Zlodziej",
  "Zwinny zolnierz",
  "Kamikadze",
  "Powstaniec",
  "Swat",
  "Predator",
  "Super szpieg",
  "Cichy zabojca",
  "Terrorysta",
  "Umarly",
  "Helikopterzysta",
  "Dziki jumper",
  "Inzynier",
  "Nitrogengalil",
  "Elektryk",
  "Assasin",
  "Kapitan",
  "General",
  "Phantom"
);
public static function getName($id){
  if(isset(Classes::$names[$id]))
   return Classes::$names[$id];
  else
   return "Nienazwana";
}
};
define("INTERVAL", 1);
if(!file_exists(STATSFILE) || ((filemtime(STATSFILE) + 60*INTERVAL) < time())){
ob_start();
include("update.php");
ob_end_clean();
}

include("themes/".$styl."/theme.php");
include("includes/nVault.reader.php");
include("includes/stats.php");
$stat = new Stats();
//Top
if (isset($_GET['strona']) && $_GET['strona'] == "top")
{
$filter = FILTER_TOP;
}
else
{
$filter = FILTER_ALL;
}

//Class
if(isset($_GET['klasa']) && isset(Classes::$names[$_GET['klasa']])){
$filter = FILTER_CLASS;
$stat->setFilter("-".Classes::getName($_GET['klasa'])."-");
}
//Nickname
else if(isset($_GET['user'])){
$filter = FILTER_NAME;
Stats::$filterMode = FILTER_MATCH;
$stat->setFilter("/^".str_replace("/", "\/",quotemeta( $_GET['user']))."-(.*?)-([1-9]{1}|[0-9]{2})-cod$/i");
}
$stat->Load();
switch($filter){
case FILTER_TOP:{
  $stat->listing(0, TOPNUM);
  break;
}
case FILTER_ALL:{
  $cnt = $stat->getLoadedNum();
  $pages = floor($cnt / NUM_PER_PAGE);
  if($cnt%NUM_PER_PAGE)
   ++$pages;
 
  $page = 1;
  if(isset($_GET['page']) && is_numeric($_GET['page'])){
   $page = min($pages, $_GET['page']);
  }
  $stat->listing(NUM_PER_PAGE*($page-1), NUM_PER_PAGE, $page, $pages);
 
  printf("<h6>Za&#322;adowanych: %d</h6>", $cnt);
  break;
}
case FILTER_CLASS:{
  $cnt = $stat->getLoadedNum();
  $pages = floor($cnt / NUM_PER_PAGE);
  if($cnt%NUM_PER_PAGE)
   ++$pages;
 
  $page = 1;
  if(isset($_GET['page']) && is_numeric($_GET['page'])){
   $page = min($pages, $_GET['page']);
  }
  $stat->listing(NUM_PER_PAGE*($page-1), NUM_PER_PAGE, $page, $pages);
 
  printf("<h6>Za&#322;adowanych: %d</h6>", $cnt);
  break;
}
case FILTER_NAME:{
  $stat->listing(0, TOPNUM);
  break;
}
}
echo "<h5 style=\"font-style:italic\">Ostatnia aktualizacja: ".$stat->getUpdateTime()."</h5>";
Theme::HTML_Foot($stat);
?>
Odpowiedz

  • +
  • -
Na 5tyk - zdjęcie Na 5tyk 03.01.2012

Moze nie wpisales jakiejs nazwy?
Odpowiedz

Name166 - zdjęcie Name166 03.01.2012

Serce ! Wszystko jest na miejscu z resztą sam zobacz , Kliknij na klasę "Elektryk" gram tą klasą i nie ma ranku http://planeta-fps.x...l/cod/index.php
Odpowiedz

  • +
  • -
Na 5tyk - zdjęcie Na 5tyk 04.01.2012

"tTalib", - Tak ma byc z tym t przed T?
Odpowiedz

Name166 - zdjęcie Name166 07.01.2012

Niee , dałem na przykładzie Elektryka , a to jest tylko literówka

Elektryka nie ma wcale w ranku , lecz gram tą klasą

@ POmoże ktoś.?
Użytkownik Name166 edytował ten post 04.01.2012 18:25
Odpowiedz