Berechtigungen für mehrere Ordner und Dateien vergeben...bitte helfen!

userjules

Mitglied
Ich bekomme folgende fehlermeldung wenn ich meine HP aufrufe:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.
Apache Server at chesstitans.de Port 80


Ich denke das hat was damit zu tuen das ich Berechtigungen für mehrere Ordner und Dateien vergeben oder installieren muss:

# Chmod 666 (777, wenn Sie Fehler mit 666 zu erhalten) / webchess_path / images / avatars Ordner.
# Chmod 666 (777, wenn Sie Fehler mit 666 zu erhalten) / webchess_path / images / Clublogo Ordner.
# Chmod 666 (777, wenn Sie Fehler mit 666 zu erhalten) / webchess_path / images / Teamlogo Ordner.
# Chmod 666 (777, wenn Sie Fehler mit 666 zu erhalten) / webchess_path / pgndata Ordner.
# Chmod 666 (777, wenn Sie Fehler mit 666 zu erhalten) / webchess_path / rekord.txt Datei.
# Chmod 666 (777, wenn Sie Fehler mit 666 zu erhalten) / webchess_path / webchess.log Datei.

aber wie mach ich das :confused:


danke schonmal vorab für die antwort.

PS:Für die,die sich gleich wieder aufregen,seid mir nicht böse,aber ich hab echt kein plan von sowas :D

gruss
 
Moin,

am einfachsten macht man soetwas mit einem FTP-Clienten(wirst du ja sicher haben um Dateien hochzuladen).
Dort sollte irgendwo die Möglichkeit sein, die Dateiberechtigungen zu setzen.

Wo genau, lässt sich einfacher sagen, wenn du verrätst, welchen FTP-Clienten du nutzt.

Wobei ich mir aber nicht so sicher wäre, dass dieser "Internal Server Error"(500) an diesen Berechtigungen liegt....da sollte eher ein "Forbidden"(403) kommen.
 
jo rechte vergeben Problem immernoch vorhanden,hattest recht mit deiner vermutung,nur frage ich mich jetzt wie geht es weiter? bzw. wo liegt der fehler.....

ich poste mal meine config.inc .php,vielleicht findest du ja den Fehler,aber ich glaube nicht das es was damit zu tuen hat...
PHP:
<?php
/**
 * Project:     cwc CompWebChess
 * File:        config.inc.php
 *
 * Main configuration file
 *
 * 	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 General Public License for more details.
 *
 * @package Config
 * @copyright CompWebChess2 Development Team
 * @since 2009
 * @license GPL This program is free software; you can redistribute it and/or modify it under the
 * terms of the General Public License as published by the Free Software Foundation;
 * either version 2 of the License, or (at your option) any later version.
 * You should have received a copy of the GNU General Public License along with this
 * program; if not, write to:
 *                       Free Software Foundation, Inc.,
 *                       59 Temple Place, Suite 330,
 * 						 Boston, MA 02111-1307 USA
 * @link http://www.compwebchess.com/cms/index.php English Forum & Support
 * @link http://www.trimbrain.com German Forum
 * @link http://www.ready-4-it.de German Support
 * @author First: nelson8317, http://www.compwebchess.com/cms/index.php
 * @author Nejat Philip Eryigit <info@trimbrain.de>
 * @author next one
 * @version 2.2dev
 *
 */

//set_magic_quotes_runtime(1);

/* A list of timezones to choose from, other than "US/Eastern" for your putenv() is here:
 * http://www.theprojects.org/dev/zone.txt e.g
 * Europe/Berlin
 * TZ=US/Eastern
 * Europe/Istanbul
 */
date_default_timezone_set('Europe/Berlin');

$VERSION = "2.2 dev";
$_CONFIG = TRUE;

/**
 * General debug switch for firebug and firephp
 *
 * var Boolean
 * @see fSendMailUtf8
 */
$bDEBUG = TRUE; #FALSE;

/**
 * Switch to testing environment and config
 *
 * var Boolean
 * @see fSendMailUtf8
 */
$bTestingEnv = TRUE;

/**
 * Set TRUE if you want not send mails and see the message displayed instead
 *
 * var Boolean
 * @see fSendMailUtf8
 */
$bDebugMail = TRUE;


/* FirePHP (download and include it {see http://www.firephp.org/Wiki/Libraries/FirePHPCore} or use pear install {see http://www.firephp.org/HQ/Install.htm}) */
// if not within the include pathes; download below classes dir
//require_once(""$CFG_SITE_ROOT/classes/FirePHPCore/FirePHP.class.php");
require_once('FirePHPCore/FirePHP.class.php');
$firephp = FirePHP::getInstance(TRUE);
ob_start();

if ($bDEBUG) {
	ini_set('display_errors', '1');
	//	error_reporting(2037);                /* Will show only critical errors */
	error_reporting(2039); /* verbose error reporting */
	//error_reporting(2047); /* very verbose error reporting */

	/* database settings */
	$firephp->setEnabled($bDEBUG); // false disable output
	$bPIncludeSequence = TRUE; // show running process sequence of includes

	// Defaults:
	$options = array('maxObjectDepth' => 10,
                 'maxArrayDepth' => 20,
                 'useNativeJsonEncode' => TRUE,
                 'includeLineNumbers' => TRUE);
	$firephp->setOptions($options);

	//	$firephp->registerErrorHandler();
	//	$firephp->registerExceptionHandler();

	/* usage for debugging */
	//$firephp->group('Test Group');
	//$firephp->log('Hello World');
	//$firephp->groupEnd();
	//$firephp->info('öooo', $sController);
	//$firephp->info($sController);
} else {
	ini_set('display_errors', '0');
	$firephp->setEnabled(FALSE); // false disable output
	$bPIncludeSequence = FALSE; // show running process sequence of includes
}

if ($bTestingEnv) {
	/* database settings */
	$CFG_SERVER = "localhost";
	$CFG_USER = "web.....";
	$CFG_PASSWORD = "...............";
	$CFG_DATABASE = "usr_web......_1";

	/* Server settings I dev Linux */
	$CFG_SITE_URL = "http://192.168.2.165/trimbrain.com/compwebchess2";    /* Enter the url to your webchess installation ...no backslash!*/
	$CFG_MAILADDRESS = "info@.....";    /* email address people see when receiving WebChess generated mail */
	$CFG_SITE_ROOT = "/raid/web/trimbrain.com/compwebchess2";     /* Enter the absolute path to your webchess installation...no backslash! */
	$CFG_SITE_HOME = $CFG_SITE_URL;   /* Enter the url to your webchess installation ...no backslash! */
	$CFG_SITE_NAME = "my site - test";           		/* Enter the name of your site */

	/* Server settings I dev Windows on XAMPP vhost*/
	$CFG_SITE_URL = "http://cwc.trimbrain.com";    /* Enter the url to your webchess installation ...no backslash!*/
	$CFG_SITE_ROOT = "F:/web/trimbrain.com/dev/chess2009";    /* Windows: Enter the absolute path to your webchess installation...no backslash! */

	/* Logs */
	/* webchess.log must be writeable to http server user, use Blank to disable log*/
	$CFG_LOG_PATH = "/raid/web/trimbrain.com/compwebchess2/logs";      /* Enter the absolute path to your webchess.log file...no backslash! */
	$CFG_LOG_DEBUG = TRUE;                     /* Save Ranking updates in the txt log */
} else {
	#	ini_set('display_errors', '0');

	/* database settings */
	$CFG_SERVER = "localhost";
	$CFG_USER = "web....";
	$CFG_PASSWORD = "...............";
	$CFG_DATABASE = "usr_web...._1";


	/* Server settings I */
	$CFG_SITE_URL = "http://compwebchess.chess-knights.com";    /* Enter the url to your webchess installation ...no backslash!*/
	$CFG_MAILADDRESS = "info@.....";    /* email address people see when receiving WebChess generated mail */
	$CFG_SITE_ROOT = "/home/chessknights/public_html";     /* Enter the absolute path to your webchess installation...no backslash! */
	$CFG_SITE_HOME = $CFG_SITE_URL;   /* Enter the url to your webchess installation ...no backslash! */
	$CFG_SITE_NAME = "my site";           		/* Enter the name of your site */

	/* Logs */
	/* webchess.log must be writeable to http server user, use Blank to disable log*/
	$CFG_LOG_PATH = "/home/chessknights/public_html/logs";      /* Enter the absolute path to your webchess.log file...no backslash! */
	$CFG_LOG_DEBUG = TRUE;                     /* Save Ranking updates in the txt log */
}
$CFG_JPGRAPH_DIR = "./jpgraph";          /* Path where JPgraph is installed */
$CFG_GRAPH_LINE_COLOR = "red";           /* Rating Graph */
$CFG_GRAPH_FILL_COLOR = "orange";
/* % Victories Graph */
$CFG_GRAPH_LINE2_COLOR = "black";       /* Victories Graph */
$CFG_GRAPH_FILL2_COLOR = "#60A0F0";
$CFG_GRAPH_SHOW = "rating";             /* Values = rating | pv */
$CFG_GRAPH_SHOW2 = "pv";                /* Values = rating | pv */

$CFG_GRAPH_LIMIT = 200;                 /* Show graphic from these number of past games. Less number means faster graphics */

/* server settings II */
$CFG_SITE_LOGO = "compwebchess.gif";
$CFG_SITE_ADMIN = "admin";					/* first name of admin */
$CFG_SESSIONTIMEOUT = 36000;             /* session times out if user doesn't interact after x secs */
$CFG_EXPIREGAME = 45;                   /* number of days before untouched games expire (minimum 1)*/
$CFG_MINAUTORELOAD = 45;                        /* min number of secs between automatic reloads reloads */
$CFG_USEEMAILNOTIFICATION = true;       /* Use email notification require_onces PHP to be properly configured for */
$CFG_NICKCHANGEALLOWED = 0;					/* whether a user can change their nick from the main menu */
$CFG_ENABLE_CHAT = TRUE;                   /* Can permit chat between players? */
$CFG_DEFAULT_COLOR_THEME =  "LightBlue";   /* Color Theme to use at index and to the new users.  If you are using version 2.0, do NOT change this! */
$STRONG_EMAIL_VALIDATION = FALSE;          /* Checks for e-mail validation at login, and ask the user to choose a valid email.*/
/* SMTP operations.  This flag allows you to easily activate */
/* or deactivate this feature.  It is highly recommended you test */
/* it before putting it into production */

/* forum settings */
$replies_perpage = 10;                // Topicview
$topics_perpage = 10;                // Forumview
$spiele_forum = 1;                        // id of the forum used for game related discussions
$main_perpage = 3;                        // Mainmenu
$main_perpage2 = 8;                          // Mainmenu
$forum_banned = array();         // ids of banned users (forum only)

/* Game settings */
$CFG_GAME_LIMIT ="45";                      /* Enter the game limit you wish to place on your users. */
$CFG_MIN_ROUNDS = 3;                       /* Number of rounds needed to a game count in the ranking - Minimun 1 */
$CFG_ENABLE_UNDO = FALSE;                  /* Can permit undo moves? */
$CFG_ENABLE_UNDO_TOURNAMENT = TRUE;      /* Can permit undo moves in tournament or blitz games? */

$CFG_DEFAULT_LANGUAGE = "english";         /* Default Language */
$CFG_RANKING_LIMIT = 0;                    /* Use 0 to show all players*/
$CFG_PERPAGE_LIST = 100;                   /* How many items should be displayed per page */
$CFG_RANK_COMPUTER = FALSE;                /* Games played against chess-bots can count at ranking? */
$CFG_ENABLE_SUBRANKING = TRUE;             /* Enable SubRanking (Medal Ranking) */
$CFG_USE_RANDOM_QUOTES = TRUE;             /* Radom quotes in the mainmenu */
$CFG_PERMIT_MULTIPLE_GAMES = TRUE;         /* Can the same player be invited more than once at the same time?*/
$CFG_CONFIRM_MOVE = TRUE;                  /* Ask confirmation for every move */
/* Useful for old databases */
$COMPRESSION = TRUE;                       /* Compress pages */

$CFG_ENABLE_TRIAL_RATING = FALSE;          /* Should new users pass by 5 games before receive a rating? */
$CFG_TIME_ARRAY = array(30,60,120,180,360,720,1440);    /* Time that can be used in time limited games (in seconds and less than 1440) */

$JAVASCRIPT_EXT = ".js";                   /* What javascript extension to use?
.js are faster but if you are updating from an
older version of compwebchess use .php */
$ONLINE_LIMIT = "0";                       /* how many users can conect simultaniously? 0 = unlimited */
$TEAM_LIMIT = "30";                        /*  how many player in one team? */

/* Tournament Section*/
$t_banned_users = array();              // array(1,2,3,4); Banned user Ids -> Can't create or join a tournament
$t_min_rating = array(1200,1300,1400,1500,1600,1700,1800,1900,2000); /* Minimum Rating selection*/
$t_max_rating = array(1400,1500,1600,1700,1800,1900,2000,2100,2200,2300,2400,2500,2600,2700,2800,2900); /* Maximum Rating selection */
$t_admin_only = false; /* Select TRUE if you want only admins to start 16 player tournaments */                                        // if true, only admins can create big tournaments
$ag_leiter = array(1,2,3,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,49,50,51,52,53,55,56,58,59,61,62,63,64,65,66,67,68,71,72,73,74,75,76,77,79,81,82,83,84,85,89,90,91,92,93,94,95,96,98,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,234,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,
288,289,290,291,292,293,294,295,296,297,298,299,300,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,367,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,
543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,
797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000);   // these is the array for that users which can create more than one group

$CFG_EXPIRE_POSTED_GAME=168;
$CFG_POSTED_TIME_ARRAY = array(30,60,120,180,360,720,1440);

/* AVATAR Settings */
$AVATAR_LOCATION = "directory";            /* Where store avatars? (database|directory) */
$max_size = 24;                            /* Maximum File Size in KB */
$max_width= 200;                           /* maximum width in pixel */
$max_height= 300;                          /* maximum height in pixel */
$extensions = array("gif", "png", "JPG", "GIF", "JPEG", "jpeg", "jpg");  /* allowed files (.gif and .GIF are different) */
$def_avatar = "default.gif";               /* name of the default avatar (in /avatars/ directory) */

/**
 * Essential includes
 */
// if not within the include pathes; download below classes directory and uncomment the line below; comment out next line
//require_once(""$CFG_SITE_ROOT/classes/phpmailer/class.phpmailer.php");
require_once("phpmailer/class.phpmailer.php");
// TODO: Lines below to be moved into header.inc.php or maybe mainfile.inc.php which should be require_onced by each controller scripts
// (position: historical reason)
require_once("$CFG_SITE_ROOT/classes/error.class.php");

?>


Und danke für deine schnelle antwort.Jedenfalls weiss ich wie man jetzt die rechte vergeben kann,schonmal danke dafür ;)

PS: mein MySQL Datenbank ist natürlich schon erfolgreich angelegt worden.Also daran kann es nicht liegen!
 
Zuletzt bearbeitet:
Ich nehme an, dass bei dir das error_logging aktiviert ist, und auf kritische Fehler in Skripten reagiert wird, indem der Status 500(Internal Server Error) gesendet wird, und der Fehler in eine Datei geschrieben wird, anstatt ihn an den Browser zu Senden.

Wo du diese Datei findest(und damit auch den Fehler im Skript) verrät dir phpinfo() error_log
 
Also ich hab hier einmal eine HTML document wleches den Titel errors.html hat:

HTML:
 <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  <html xmlns="http://www.w3.org/1999/xhtml">
		<head>
			<!-- template designed by Marco Von Ballmoos -->
			<title>phpDocumentor Parser Errors and Warnings</title>
			<link rel="stylesheet" href="media/stylesheet.css" />
			<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
		</head>
		<body>
						<a href="#Post-parsing">Post-parsing</a><br>
<a href="#allgames.php">allgames.php</a><br>
<a href="#allmygames.php">allmygames.php</a><br>
<a href="#allmygames3.php">allmygames3.php</a><br>
<a href="#analyze.php">analyze.php</a><br>
<a href="#analyze_comments.php">analyze_comments.php</a><br>
<a href="#analyze_write.php">analyze_write.php</a><br>
<a href="#annotate.php">annotate.php</a><br>
<a href="#apply.php">apply.php</a><br>
<a href="#archives.php">archives.php</a><br>
<a href="#avatar.php">avatar.php</a><br>
<a href="#avatar_team.php">avatar_team.php</a><br>
<a href="#buddylist.php">buddylist.php</a><br>
<a href="#buddy_confirm.php">buddy_confirm.php</a><br>
<a href="#captainutils.php">captainutils.php</a><br>
<a href="#captcha_display.php">captcha_display.php</a><br>
<a href="#captcha_validate.php">captcha_validate.php</a><br>
<a href="#challenge_confirm2.php">challenge_confirm2.php</a><br>
<a href="#challenge_confirm4.php">challenge_confirm4.php</a><br>
<a href="#challenge_confirm6.php">challenge_confirm6.php</a><br>
<a href="#challenge_confirm8.php">challenge_confirm8.php</a><br>
<a href="#challenge_linup2.php">challenge_linup2.php</a><br>
<a href="#challenge_linup4.php">challenge_linup4.php</a><br>
<a href="#challenge_linup6.php">challenge_linup6.php</a><br>
<a href="#challenge_linup8.php">challenge_linup8.php</a><br>
<a href="#challenge_sent2.php">challenge_sent2.php</a><br>
<a href="#challenge_sent4.php">challenge_sent4.php</a><br>
<a href="#challenge_sent6.php">challenge_sent6.php</a><br>
<a href="#challenge_sent8.php">challenge_sent8.php</a><br>
<a href="#challenge_team1.php">challenge_team1.php</a><br>
<a href="#challenge_team2.php">challenge_team2.php</a><br>
<a href="#challenge_team4.php">challenge_team4.php</a><br>
<a href="#challenge_team6.php">challenge_team6.php</a><br>
<a href="#challenge_team8.php">challenge_team8.php</a><br>
<a href="#chat.php">chat.php</a><br>
<a href="#chat_online.php">chat_online.php</a><br>
<a href="#chat_window.php">chat_window.php</a><br>
<a href="#chess.php">chess.php</a><br>
<a href="#chessboard.php">chessboard.php</a><br>
<a href="#chessconstants.inc.php">chessconstants.inc.php</a><br>
<a href="#chessdb.inc.php">chessdb.inc.php</a><br>
<a href="#chessdb2.inc.php">chessdb2.inc.php</a><br>
<a href="#chessutils.inc.php">chessutils.inc.php</a><br>
<a href="#chessutils.php">chessutils.php</a><br>
<a href="#club.inc.php">club.inc.php</a><br>
<a href="#clubs_help.php">clubs_help.php</a><br>
<a href="#commands.php">commands.php</a><br>
<a href="#conduct.php">conduct.php</a><br>
<a href="#configure.php">configure.php</a><br>
<a href="#connectdb.inc.php">connectdb.inc.php</a><br>
<a href="#contribute.php">contribute.php</a><br>
<a href="#countryselection.inc.php">countryselection.inc.php</a><br>
<a href="#credits.php">credits.php</a><br>
<a href="#dt_convertold.php">dt_convertold.php</a><br>
<a href="#error.class.php">error.class.php</a><br>
<a href="#exportpgn.php">exportpgn.php</a><br>
<a href="#export_all_pgn.php">export_all_pgn.php</a><br>
<a href="#export_tournament.php">export_tournament.php</a><br>
<a href="#faq.inc.php">faq.inc.php</a><br>
<a href="#faq.php">faq.php</a><br>
<a href="#features.php">features.php</a><br>
<a href="#footer.php">footer.php</a><br>
<a href="#forgotpassword.php">forgotpassword.php</a><br>
<a href="#forum.php">forum.php</a><br>
<a href="#forum_admin.php">forum_admin.php</a><br>
<a href="#forum_analyze.php">forum_analyze.php</a><br>
<a href="#forum_functions.inc.php">forum_functions.inc.php</a><br>
<a href="#games_user.php">games_user.php</a><br>
<a href="#genmedals.php">genmedals.php</a><br>
<a href="#groups.php">groups.php</a><br>
<a href="#groups_functions.inc.php">groups_functions.inc.php</a><br>
<a href="#gui.inc.php">gui.inc.php</a><br>
<a href="#guidelines.php">guidelines.php</a><br>
<a href="#header.php">header.php</a><br>
<a href="#header_index.php">header_index.php</a><br>
<a href="#header_index2.php">header_index2.php</a><br>
<a href="#help.clubs.inc.php">help.clubs.inc.php</a><br>
<a href="#help.conduct.inc.php">help.conduct.inc.php</a><br>
<a href="#help.features.inc.php">help.features.inc.php</a><br>
<a href="#help.inc.php">help.inc.php</a><br>
<a href="#help.php">help.php</a><br>
<a href="#help.ratings.inc.php">help.ratings.inc.php</a><br>
<a href="#history_forum.php">history_forum.php</a><br>
<a href="#ignorelist.php">ignorelist.php</a><br>
<a href="#ignore_confirm.php">ignore_confirm.php</a><br>
<a href="#index.php">index.php</a><br>
<a href="#inviteplayer.php">inviteplayer.php</a><br>
<a href="#inviteplayer2.php">inviteplayer2.php</a><br>
<a href="#isCheckMate.php">isCheckMate.php</a><br>
<a href="#joingame.php">joingame.php</a><br>
<a href="#joingame_two.php">joingame_two.php</a><br>
<a href="#languageselection.inc.php">languageselection.inc.php</a><br>
<a href="#leaveteam.php">leaveteam.php</a><br>
<a href="#logout.php">logout.php</a><br>
<a href="#mailforgotpass.php">mailforgotpass.php</a><br>
<a href="#mailform.php">mailform.php</a><br>
<a href="#mailform2.php">mailform2.php</a><br>
<a href="#mailmsgforumreply.php">mailmsgforumreply.php</a><br>
<a href="#mailmsginvite.php">mailmsginvite.php</a><br>
<a href="#mailmsgmove.php">mailmsgmove.php</a><br>
<a href="#mailmsgresign.php">mailmsgresign.php</a><br>
<a href="#mailmsgtest.php">mailmsgtest.php</a><br>
<a href="#mailmsgwithdraw.php">mailmsgwithdraw.php</a><br>
<a href="#mailvalidation.php">mailvalidation.php</a><br>
<a href="#mainfile.inc.php">mainfile.inc.php</a><br>
<a href="#mainmenu.php">mainmenu.php</a><br>
<a href="#menu.php">menu.php</a><br>
<a href="#menu_links.php">menu_links.php</a><br>
<a href="#messages.php">messages.php</a><br>
<a href="#move.inc.php">move.inc.php</a><br>
<a href="#mygames.inc.php">mygames.inc.php</a><br>
<a href="#mymove.php">mymove.php</a><br>
<a href="#mymove3.php">mymove3.php</a><br>
<a href="#myteamgames.php">myteamgames.php</a><br>
<a href="#myteamgames3.php">myteamgames3.php</a><br>
<a href="#mytournamentgames.php">mytournamentgames.php</a><br>
<a href="#mytournamentgames3.php">mytournamentgames3.php</a><br>
<a href="#newgame.inc.php">newgame.inc.php</a><br>
<a href="#newuser.php">newuser.php</a><br>
<a href="#ob.lib.php">ob.lib.php</a><br>
<a href="#player_options.php">player_options.php</a><br>
<a href="#quick_stats.php">quick_stats.php</a><br>
<a href="#quote.inc.php">quote.inc.php</a><br>
<a href="#ranking.php">ranking.php</a><br>
<a href="#ratings.php">ratings.php</a><br>
<a href="#rules.inc.php">rules.inc.php</a><br>
<a href="#searchplayer.php">searchplayer.php</a><br>
<a href="#sendmessage.php">sendmessage.php</a><br>
<a href="#sentchallenges.php">sentchallenges.php</a><br>
<a href="#sessioncheck.inc.php">sessioncheck.inc.php</a><br>
<a href="#sessioncheck2.inc.php">sessioncheck2.inc.php</a><br>
<a href="#show_avatar.php">show_avatar.php</a><br>
<a href="#show_avatar_club.php">show_avatar_club.php</a><br>
<a href="#show_avatar_team.php">show_avatar_team.php</a><br>
<a href="#show_user_pv_graph.php">show_user_pv_graph.php</a><br>
<a href="#show_user_rating_graph.php">show_user_rating_graph.php</a><br>
<a href="#site_credits.php">site_credits.php</a><br>
<a href="#squareclicked.php">squareclicked.php</a><br>
<a href="#stats_matches.php">stats_matches.php</a><br>
<a href="#stats_team.php">stats_team.php</a><br>
<a href="#stats_team3.php">stats_team3.php</a><br>
<a href="#stats_user.php">stats_user.php</a><br>
<a href="#strings.inc.php">strings.inc.php</a><br>
<a href="#swiss.php">swiss.php</a><br>
<a href="#swiss_functions.inc.php">swiss_functions.inc.php</a><br>
<a href="#teamannounce.php">teamannounce.php</a><br>
<a href="#teamgames.php">teamgames.php</a><br>
<a href="#teamgames_user.php">teamgames_user.php</a><br>
<a href="#teamranking.php">teamranking.php</a><br>
<a href="#teams.php">teams.php</a><br>
<a href="#teamshelp.php">teamshelp.php</a><br>
<a href="#team_matches.php">team_matches.php</a><br>
<a href="#team_matches_finished.php">team_matches_finished.php</a><br>
<a href="#tournaments.inc.php">tournaments.inc.php</a><br>
<a href="#tournaments.php">tournaments.php</a><br>
<a href="#tournaments_functions.inc.php">tournaments_functions.inc.php</a><br>
<a href="#unavailable.php">unavailable.php</a><br>
<a href="#undo.inc.php">undo.inc.php</a><br>
<a href="#vacation.php">vacation.php</a><br>
<a href="#validation.php">validation.php</a><br>
<a name="Post-parsing"></a>
<h1>Post-parsing</h1>
<h2>Warnings:</h2><br>
<b>Warning</b> - 
duplicate function element "getMaxRating" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getPV" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getPD" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getRatingMonth" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getRating" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getTimeouts" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getTeamRating" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getTeamAvgPoints" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getPL" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "updateTimestamp" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "processMessages" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "giveMedal" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "generateMedals" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "savevacationGame" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "loadGame" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "loadHistory" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "savePromotion" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "saveHistory" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getTeamGames" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getStatsUser" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "verifyGameFlag" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "get_record" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getRanking" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "giveMedalm" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "save_match" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "db_result_to_array" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTimeLimit" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getTourneyTimeLimit" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getRanking2" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "tempoEsgotado" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "save_pgn" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "saveRanking" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getDifficult" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "save_tournament" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "countRating" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getTrust" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getXPW" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getXPL" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getcount" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/forum_functions.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "saveGame" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "verify_leader" in file /raid/daten/webserver/trimbrain.com/compwebchess2/leaveteam.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "verify_leader" in file /raid/daten/webserver/trimbrain.com/compwebchess2/captainutils.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "verify_leader" in file /raid/daten/webserver/trimbrain.com/compwebchess2/team_matches_finished.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "verify_leader" in file /raid/daten/webserver/trimbrain.com/compwebchess2/teams.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "db_input" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/forum_functions.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup4.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup6.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup8.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "verify_leader" in file /raid/daten/webserver/trimbrain.com/compwebchess2/teamannounce.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/forum.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/avatar_team.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/avatar.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/chess.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/chat_online.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/groups.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/chat.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/swiss.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate define element "DEBUG" in file /raid/daten/webserver/trimbrain.com/compwebchess2/chat_window.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup2.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "verify_leader" in file /raid/daten/webserver/trimbrain.com/compwebchess2/teamgames.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm4.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm6.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm8.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm4.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent8.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "db_output" in file /raid/daten/webserver/trimbrain.com/compwebchess2/includes/forum_functions.inc.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent4.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent6.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup2.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm2.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent6.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent8.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/stats_matches.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent4.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchID" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm2.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup6.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup8.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<b>Warning</b> - 
duplicate function element "getMatchTime" in file /raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup4.php will be ignored.
Use an @ignore tag on the original if you want this case to be documented.<br>
<a name="activate.php"></a>
<h1>activate.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 220</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/activate.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="allgames.php"></a>
<h1>allgames.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 233</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/allgames.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="allmygames.php"></a>
<h1>allmygames.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 879</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/allmygames.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="allmygames3.php"></a>
<h1>allmygames3.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 322</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/allmygames3.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="analyze.php"></a>
<h1>analyze.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 215</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/javascript/analyze.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 355</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/analyze.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="analyze_comments.php"></a>
<h1>analyze_comments.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 212</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/analyze_comments.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="analyze_write.php"></a>
<h1>analyze_write.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 206</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/analyze_write.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="annotate.php"></a>
<h1>annotate.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 143</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/annotate.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="apply.php"></a>
<h1>apply.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 86</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/apply.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="archives.php"></a>
<h1>archives.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 142</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/archives.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="avatar.php"></a>
<h1>avatar.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 233</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/avatar.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="avatar_team.php"></a>
<h1>avatar_team.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 201</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/avatar_team.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="buddylist.php"></a>
<h1>buddylist.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 335</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/buddylist.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="buddy_confirm.php"></a>
<h1>buddy_confirm.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 191</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/buddy_confirm.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="captainutils.php"></a>
<h1>captainutils.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 616</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/captainutils.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="captcha_display.php"></a>
<h1>captcha_display.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 34</b> - Page-level DocBlock precedes "require_once "classes/captcha/securimage.php"", use another DocBlock to document the source element<br>
<a name="captcha_validate.php"></a>
<h1>captcha_validate.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 33</b> - Page-level DocBlock precedes "require_once "classes/captcha/securimage.php"", use another DocBlock to document the source element<br>
<a name="challenge_confirm2.php"></a>
<h1>challenge_confirm2.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 444</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm2.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_confirm4.php"></a>
<h1>challenge_confirm4.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 470</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm4.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_confirm6.php"></a>
<h1>challenge_confirm6.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 478</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm6.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_confirm8.php"></a>
<h1>challenge_confirm8.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 508</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_confirm8.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_linup2.php"></a>
<h1>challenge_linup2.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 405</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup2.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_linup4.php"></a>
<h1>challenge_linup4.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 462</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup4.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_linup6.php"></a>
<h1>challenge_linup6.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 518</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup6.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_linup8.php"></a>
<h1>challenge_linup8.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 587</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_linup8.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_sent2.php"></a>
<h1>challenge_sent2.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 215</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent2.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_sent4.php"></a>
<h1>challenge_sent4.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 232</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent4.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_sent6.php"></a>
<h1>challenge_sent6.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 250</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent6.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_sent8.php"></a>
<h1>challenge_sent8.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 264</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_sent8.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_team1.php"></a>
<h1>challenge_team1.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 492</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_team1.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_team2.php"></a>
<h1>challenge_team2.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 332</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_team2.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_team4.php"></a>
<h1>challenge_team4.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 378</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_team4.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_team6.php"></a>
<h1>challenge_team6.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 425</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_team6.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="challenge_team8.php"></a>
<h1>challenge_team8.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 475</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/challenge_team8.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chat.php"></a>
<h1>chat.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 231</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/chat.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chat_online.php"></a>
<h1>chat_online.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 158</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/chat_online.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chat_window.php"></a>
<h1>chat_window.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 115</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/chat_window.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chess.php"></a>
<h1>chess.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1112</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/chess.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chessboard.php"></a>
<h1>chessboard.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 416</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/chessboard.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chessconstants.inc.php"></a>
<h1>chessconstants.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 38</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessconstants.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chessdb.inc.php"></a>
<h1>chessdb.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 2514</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chessdb2.inc.php"></a>
<h1>chessdb2.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 2199</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessdb2.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chessutils.inc.php"></a>
<h1>chessutils.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 453</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/chessutils.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="chessutils.php"></a>
<h1>chessutils.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 100</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/javascript/chessutils.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="club.inc.php"></a>
<h1>club.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 75</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/club.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 75</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/club.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="clubs_help.php"></a>
<h1>clubs_help.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 127</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/clubs_help.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="commands.php"></a>
<h1>commands.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 97</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/javascript/commands.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="conduct.php"></a>
<h1>conduct.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 136</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/conduct.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="configure.php"></a>
<h1>configure.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 613</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/configure.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="connectdb.inc.php"></a>
<h1>connectdb.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 34</b> - Page-level DocBlock precedes "require_once 'includes/config.inc.php'", use another DocBlock to document the source element<br>
<a name="contribute.php"></a>
<h1>contribute.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 352</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/contribute.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="countryselection.inc.php"></a>
<h1>countryselection.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 846</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/countryselection.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="credits.php"></a>
<h1>credits.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 185</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/credits.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="dt_convertold.php"></a>
<h1>dt_convertold.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 135</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/translations/dt_convertold.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="error.class.php"></a>
<h1>error.class.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 34</b> - Unknown tag "@use" used<br>
<b>Warning on line 42</b> - no @package tag was used in a DocBlock for class cMyErrors<br>
<b>Warning on line 42</b> - example file "../activate.php" does not exist<br>
<a name="exportpgn.php"></a>
<h1>exportpgn.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 87</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/exportpgn.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="export_all_pgn.php"></a>
<h1>export_all_pgn.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 231</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/export_all_pgn.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="export_tournament.php"></a>
<h1>export_tournament.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 223</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/export_tournament.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="faq.inc.php"></a>
<h1>faq.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 163</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/faq.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 163</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/faq.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="faq.php"></a>
<h1>faq.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 205</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/faq.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="features.php"></a>
<h1>features.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 140</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/features.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="footer.php"></a>
<h1>footer.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 10</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/Wooden/footer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 10</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/SilverGrey/footer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 10</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/Gold/footer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 10</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/LightBlue/footer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 12</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/Classic/footer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 62</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/XHalo/footer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="forgotpassword.php"></a>
<h1>forgotpassword.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 168</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/forgotpassword.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="forum.php"></a>
<h1>forum.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1870</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/forum.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="forum_admin.php"></a>
<h1>forum_admin.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 524</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/forum_admin.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="forum_analyze.php"></a>
<h1>forum_analyze.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 143</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/javascript/forum_analyze.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 172</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/forum_analyze.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="forum_functions.inc.php"></a>
<h1>forum_functions.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 464</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/forum_functions.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="games_user.php"></a>
<h1>games_user.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 192</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/games_user.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="genmedals.php"></a>
<h1>genmedals.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 36</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/genmedals.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="groups.php"></a>
<h1>groups.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 763</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/groups.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="groups_functions.inc.php"></a>
<h1>groups_functions.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 136</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/groups_functions.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="gui.inc.php"></a>
<h1>gui.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1710</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/gui.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="guidelines.php"></a>
<h1>guidelines.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 152</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/guidelines.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 152</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/guidelines.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="header.php"></a>
<h1>header.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 213</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/Classic/header.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 213</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/LightBlue/header.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 213</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/Gold/header.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 213</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/Wooden/header.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 213</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/SilverGrey/header.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 228</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/XHalo/header.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="header_index.php"></a>
<h1>header_index.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 211</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/LightBlue/header_index.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="header_index2.php"></a>
<h1>header_index2.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 47</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/themes/LightBlue/header_index2.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="help.clubs.inc.php"></a>
<h1>help.clubs.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 74</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/help.clubs.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 74</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/help.clubs.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="help.conduct.inc.php"></a>
<h1>help.conduct.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 58</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/help.conduct.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 58</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/help.conduct.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="help.features.inc.php"></a>
<h1>help.features.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 84</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/help.features.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 84</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/help.features.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="help.inc.php"></a>
<h1>help.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 75</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/help.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 75</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/help.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="help.php"></a>
<h1>help.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 143</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/help.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="help.ratings.inc.php"></a>
<h1>help.ratings.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 149</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/help.ratings.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 149</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/help.ratings.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="history_forum.php"></a>
<h1>history_forum.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 121</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/history_forum.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="ignorelist.php"></a>
<h1>ignorelist.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 321</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/ignorelist.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="ignore_confirm.php"></a>
<h1>ignore_confirm.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 197</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/ignore_confirm.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="index.php"></a>
<h1>index.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 176</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/index.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="inviteplayer.php"></a>
<h1>inviteplayer.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 486</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/inviteplayer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="inviteplayer2.php"></a>
<h1>inviteplayer2.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 326</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/inviteplayer2.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="isCheckMate.php"></a>
<h1>isCheckMate.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1469</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/javascript/isCheckMate.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="joingame.php"></a>
<h1>joingame.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1022</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/joingame.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="joingame_two.php"></a>
<h1>joingame_two.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 418</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/joingame_two.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="languageselection.inc.php"></a>
<h1>languageselection.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 75</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/languageselection.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="leaveteam.php"></a>
<h1>leaveteam.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 407</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/leaveteam.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="logout.php"></a>
<h1>logout.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 101</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/logout.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailforgotpass.php"></a>
<h1>mailforgotpass.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 34</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailforgotpass.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailform.php"></a>
<h1>mailform.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 193</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailform.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailform2.php"></a>
<h1>mailform2.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 196</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailform2.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailmsgforumreply.php"></a>
<h1>mailmsgforumreply.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 34</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailmsgforumreply.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailmsginvite.php"></a>
<h1>mailmsginvite.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 48</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailmsginvite.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailmsgmove.php"></a>
<h1>mailmsgmove.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 50</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailmsgmove.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailmsgresign.php"></a>
<h1>mailmsgresign.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 48</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailmsgresign.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailmsgtest.php"></a>
<h1>mailmsgtest.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 50</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailmsgtest.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailmsgwithdraw.php"></a>
<h1>mailmsgwithdraw.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 52</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailmsgwithdraw.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mailvalidation.php"></a>
<h1>mailvalidation.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 30</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mailvalidation.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mainfile.inc.php"></a>
<h1>mainfile.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 971</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/mainfile.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mainmenu.php"></a>
<h1>mainmenu.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 973</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mainmenu.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="menu.php"></a>
<h1>menu.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 17</b> - no @package tag was used in a DocBlock for file /raid/daten/webserver/trimbrain.com/compwebchess2/themes/LightBlue/menu.php<br>
<b>Warning on line 18</b> - no @package tag was used in a DocBlock for file /raid/daten/webserver/trimbrain.com/compwebchess2/themes/XHalo/menu.php<br>
<a name="menu_links.php"></a>
<h1>menu_links.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 18</b> - no @package tag was used in a DocBlock for file /raid/daten/webserver/trimbrain.com/compwebchess2/menu_links.php<br>
<a name="messages.php"></a>
<h1>messages.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 703</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/messages.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="move.inc.php"></a>
<h1>move.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 84</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/move.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mygames.inc.php"></a>
<h1>mygames.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 35</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mygames.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mymove.php"></a>
<h1>mymove.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 874</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mymove.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mymove3.php"></a>
<h1>mymove3.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 337</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mymove3.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="myteamgames.php"></a>
<h1>myteamgames.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 897</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/myteamgames.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="myteamgames3.php"></a>
<h1>myteamgames3.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 317</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/myteamgames3.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mytournamentgames.php"></a>
<h1>mytournamentgames.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 910</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mytournamentgames.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="mytournamentgames3.php"></a>
<h1>mytournamentgames3.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 309</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/mytournamentgames3.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="newgame.inc.php"></a>
<h1>newgame.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 3511</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/newgame.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="newuser.php"></a>
<h1>newuser.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 38</b> - Page-level DocBlock precedes "require_once './includes/config.inc.php'", use another DocBlock to document the source element<br>
<h2>Errors:</h2><br>
<b>Error on line 38</b> - require_once include's DocBlock has @package tag, illegal. ignoring tag "@package Registration"<br>
<a name="ob.lib.php"></a>
<h1>ob.lib.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 135</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/ob.lib.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="player_options.php"></a>
<h1>player_options.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 358</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/player_options.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="quick_stats.php"></a>
<h1>quick_stats.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 164</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/quick_stats.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="quote.inc.php"></a>
<h1>quote.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 36</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/turkish/quote.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 106</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/quote.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 106</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/quote.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="ranking.php"></a>
<h1>ranking.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 256</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/ranking.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="ratings.php"></a>
<h1>ratings.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 224</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/ratings.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="rules.inc.php"></a>
<h1>rules.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 68</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/dutch/rules.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 226</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/turkish/rules.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 551</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/rules.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 551</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/rules.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="searchplayer.php"></a>
<h1>searchplayer.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 282</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/searchplayer.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="sendmessage.php"></a>
<h1>sendmessage.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 149</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/sendmessage.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="sentchallenges.php"></a>
<h1>sentchallenges.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 332</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/sentchallenges.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="sessioncheck.inc.php"></a>
<h1>sessioncheck.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 59</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/sessioncheck.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="sessioncheck2.inc.php"></a>
<h1>sessioncheck2.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 51</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/sessioncheck2.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="show_avatar.php"></a>
<h1>show_avatar.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 55</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/show_avatar.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="show_avatar_club.php"></a>
<h1>show_avatar_club.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 55</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/show_avatar_club.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="show_avatar_team.php"></a>
<h1>show_avatar_team.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 55</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/show_avatar_team.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="show_user_pv_graph.php"></a>
<h1>show_user_pv_graph.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 106</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/show_user_pv_graph.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="show_user_rating_graph.php"></a>
<h1>show_user_rating_graph.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 118</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/show_user_rating_graph.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="site_credits.php"></a>
<h1>site_credits.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 210</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/site_credits.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="squareclicked.php"></a>
<h1>squareclicked.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 128</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/javascript/squareclicked.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="stats_matches.php"></a>
<h1>stats_matches.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 163</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/stats_matches.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="stats_team.php"></a>
<h1>stats_team.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 206</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/stats_team.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="stats_team3.php"></a>
<h1>stats_team3.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 206</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/stats_team3.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="stats_user.php"></a>
<h1>stats_user.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 537</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/stats_user.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="strings.inc.php"></a>
<h1>strings.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 382</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/turkish/strings.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 767</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/dutch/strings.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 947</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/german/strings.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<b>Warning on line 1390</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/languages/english/strings.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="swiss.php"></a>
<h1>swiss.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 828</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/swiss.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="swiss_functions.inc.php"></a>
<h1>swiss_functions.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 785</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/swiss_functions.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="teamannounce.php"></a>
<h1>teamannounce.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 609</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/teamannounce.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="teamgames.php"></a>
<h1>teamgames.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 237</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/teamgames.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="teamgames_user.php"></a>
<h1>teamgames_user.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 261</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/teamgames_user.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="teamranking.php"></a>
<h1>teamranking.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 158</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/teamranking.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="teams.php"></a>
<h1>teams.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1293</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/teams.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="teamshelp.php"></a>
<h1>teamshelp.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 182</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/teamshelp.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="team_matches.php"></a>
<h1>team_matches.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 269</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/team_matches.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="team_matches_finished.php"></a>
<h1>team_matches_finished.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 262</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/team_matches_finished.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="tournaments.inc.php"></a>
<h1>tournaments.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 42</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/tournaments.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="tournaments.php"></a>
<h1>tournaments.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 1850</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/tournaments.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="tournaments_functions.inc.php"></a>
<h1>tournaments_functions.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 867</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/tournaments_functions.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="unavailable.php"></a>
<h1>unavailable.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 104</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/unavailable.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="undo.inc.php"></a>
<h1>undo.inc.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 220</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/includes/undo.inc.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="vacation.php"></a>
<h1>vacation.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 334</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/vacation.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<a name="validation.php"></a>
<h1>validation.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 961</b> - File "/raid/daten/webserver/trimbrain.com/compwebchess2/javascript/validation.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
	<p class="notes" id="credit">
		Documentation generated on Mon, 09 Feb 2009 05:15:33 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.2</a>
	</p>
	</body>
</html>

und hier hab ich einmal eine pHp document wleches den Titel error.class.php hat:

PHP:
<?php
/**
 * Project:     cwc CompWebChess
 * File:        error.class.php
 *
 * Validate the captcha code supplied from the phpcaptcha-class
 *
 * 	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 General Public License for more details.
 *
 * @package Libraries
 * @subpackage ErrorManagement
 * 
 * @filesource http://www.phpcaptcha.org/ for the class
 * @copyright CompWebChess2 Development Team
 * @since 2009
 * @license GPL General Public License as published by the Free Software Foundation;
 * either version 2 of the License, or (at your option) any later version.
 * You should have received a copy of the GNU General Public License along with this
 * program; if not, write to:
 *                       Free Software Foundation, Inc.,
 *                       59 Temple Place, Suite 330,
 * 						 Boston, MA 02111-1307 USA
 * @link http://www.compwebchess.com/cms/index.php English Forum & Support
 * @link http://www.trimbrain.com German Forum
 * @link http://www.ready-4-it.de German Support
 * @author First: Nejat Philip Eryigit <info@trimbrain.de>
 * @author next one
 * @version 2.2dev
 *
 * @use
 */

 if ($bPIncludeSequence) $firephp->info('error.class|' . $sController);

 /**
 * Control Error Output with Exceptions
 * 
 * @example ../activate.php
 * @author Nejat Philip Eryigit <info@trimbrain.de>
  */
class cMyErrors extends Exception {
	/*
	 * For testing:
	 * new cMyErrors('Test', cMyErrors::THROW_DEFAULT);
	 * throw new Exception();
	 */

	//timezone settings

	const THROW_MYSQL = 1;
	const THROW_DEFAULT = 2;

	public function __construct($sType = self::THROW_DEFAULT, $sMessage = NULL, $iCode = 0) {
		#		date_default_timezone_set("Europe/Berlin");
		echo '<div id = "exception">';
		switch ($sType) {
			case self::THROW_MYSQL:
				echo '<h1>Mysql!</h1><p>'
				. "$sMessage<br /> Error - "
				. ": (" . mysql_errno() . ") " . mysql_error() . '<br/>';
				break;
			case self::THROW_DEFAULT:
			default:
				echo '<h1>Error!</h1><p>';
				if (is_string($avalue)) echo $avalue;
		}
		$sTrace = $this->getTrace();
		echo '<h2>BackTrace</h2>';
		echo '<p>' . date("d/m/Y H:i:s") .'</p>';
		for($i=0;$i<sizeof($sTrace);$i++) {
			echo '<hr />';
			print_r($sTrace[$i]);
		}
		//		parent::__construct($message, $code);
		echo '<h1><a href="mainmenu.php">Pls, click back to the main menu</a></h1>';
		die;
	}

}
?>


Ich hab schon selber versucht,aber komm wirklich nicht weiter :(

gruss
 
Das ist nicht das Gesuchte.
Wo du diese Datei, sofern vorhanden, findest, steht wie gesagt in der PHP-Konfiguration, und diese kannst du per phpinfo() einsehen.

Es ist eine Datei mit idR. der Endung .log , welche sich auch in einem Verzeichnis namens log befindet, welches du zumeist oberhalb der DOCUMENT_ROOT(htdocs etc.) findest.
 
ich habe webchess.log datei allerdings ist das eine Text dateiund darin steht nur wer sich wann eingelogt hat.....

24/11/2008 03:50:33 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
24/11/2008 05:00:42 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
24/11/2008 05:02:26 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
24/11/2008 05:03:19 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
24/11/2008 05:05:55 # "Login Accepted WEBCHESS" "456" "127.0.0.1" ""
24/11/2008 05:05:56 # "Login Accepted WEBCHESS" "456" "127.0.0.1" ""
25/11/2008 11:05:18 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
25/11/2008 20:07:06 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
26/11/2008 00:53:00 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
26/11/2008 00:55:15 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
26/11/2008 01:40:14 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
27/11/2008 03:01:24 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
27/11/2008 06:25:36 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
27/11/2008 19:20:38 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
27/11/2008 22:40:27 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
27/11/2008 23:17:38 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/11/2008 01:24:03 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
02/12/2008 05:59:52 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:04:12 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:16:03 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:17:43 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:17:53 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:20:16 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:21:27 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:21:50 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:24:07 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:24:32 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:24:48 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 06:25:23 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 23:16:01 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 23:16:42 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
02/12/2008 23:16:43 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 00:09:58 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 00:11:45 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:05:15 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:06:59 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:09:30 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:20:45 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:26:49 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:27:41 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:29:42 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:31:05 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:36:52 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:37:06 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:37:23 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:37:29 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:37:56 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:37:59 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:39:29 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:39:47 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:45:22 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 09:48:37 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 10:10:40 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:11:28 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:11:51 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:12:35 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:13:05 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:14:33 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:15:08 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:16:12 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:19:09 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:23:56 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 11:41:43 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 12:01:54 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 12:11:27 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 13:59:23 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:11:59 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:13:04 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:14:18 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:15:41 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:33:55 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:34:09 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:56:54 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 14:57:14 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 15:11:38 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:05:41 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:09:13 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:10:56 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:11:07 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:12:03 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:12:21 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:12:36 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:13:15 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:14:16 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:20:01 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:32:17 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:32:52 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:42:27 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:45:48 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:55:04 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:56:41 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:57:25 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:58:08 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 16:59:33 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 17:02:01 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 17:02:53 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 17:03:49 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 18:29:55 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 18:31:58 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
28/12/2008 18:37:45 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
29/12/2008 08:24:56 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
29/12/2008 08:26:20 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
29/12/2008 08:37:30 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
29/12/2008 08:37:58 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
29/12/2008 08:40:29 # "Login Accepted WEBCHESS" "admin" "127.0.0.1" ""
30/12/2008 13:24:29 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
30/12/2008 13:24:42 # "Deleting old games" "Game: 4"
30/12/2008 13:24:42 # "Deleting refused games" "Game: 5"
30/12/2008 13:39:44 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
30/12/2008 14:48:05 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
30/12/2008 14:54:25 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
01/01/2009 09:08:02 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
01/01/2009 22:50:46 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
01/01/2009 23:59:02 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
02/01/2009 05:20:44 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
02/01/2009 06:35:56 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 16:50:17 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 18:21:40 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 18:47:07 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 18:53:15 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 19:01:37 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 19:02:23 # "Deleting refused games" "Game: 1"
04/01/2009 19:02:23 # "Deleting refused games" "Game: 2"
04/01/2009 19:06:52 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 19:09:25 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 19:10:18 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 19:17:36 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 19:18:06 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 19:33:10 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 20:08:42 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 20:08:42 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 20:34:51 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 20:34:51 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
04/01/2009 20:35:05 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
08/01/2009 15:33:09 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
08/01/2009 19:34:49 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
08/01/2009 19:35:22 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 03:32:27 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 12:49:52 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 12:49:57 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 12:50:13 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 12:50:13 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 12:50:21 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 14:46:45 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 14:46:58 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 15:50:08 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 15:50:08 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 15:50:17 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 15:50:26 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 15:50:26 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 16:54:08 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 16:57:56 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 18:18:43 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 18:18:43 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 18:19:09 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 18:19:25 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 18:19:25 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 18:20:04 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
10/01/2009 19:41:08 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 13:33:28 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:37:17 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:37:17 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:37:42 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:37:43 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:38:00 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:38:00 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:38:29 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:38:29 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
11/01/2009 16:38:46 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 03:07:03 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 04:48:35 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 04:48:35 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 04:49:03 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 04:51:07 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 04:56:02 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 05:20:43 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
16/01/2009 19:11:09 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
20/01/2009 03:40:49 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 03:13:23 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 03:13:30 # "Deleting refused games" "Game: 8"
25/01/2009 03:22:17 # "Login Accepted WEBCHESS" "456" "127.0.0.1" ""
25/01/2009 03:22:26 # "Deleting refused games" "Game: 6"
25/01/2009 03:22:26 # "Deleting refused games" "Game: 7"
25/01/2009 03:22:26 # "Login Accepted WEBCHESS" "456" "127.0.0.1" ""
25/01/2009 03:23:15 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 04:36:23 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 12:56:30 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 12:59:55 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 17:28:05 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 17:37:57 # "Login Accepted WEBCHESS" "456" "127.0.0.1" ""
25/01/2009 18:10:39 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
25/01/2009 18:29:54 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
25/01/2009 19:12:09 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
25/01/2009 19:50:59 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
27/01/2009 00:47:30 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
27/01/2009 01:28:30 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
28/01/2009 12:14:44 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
28/01/2009 17:26:13 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
28/01/2009 17:57:41 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
28/01/2009 18:12:27 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
28/01/2009 18:15:53 # "Login Accepted WEBCHESS" "456" "127.0.0.1" ""
28/01/2009 20:57:07 # "Login Accepted WEBCHESS" "123" "127.0.0.1" ""
29/01/2009 14:23:07 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
30/01/2009 00:15:53 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
30/01/2009 02:07:19 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
30/01/2009 02:19:46 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
30/01/2009 04:09:11 # "Login Accepted WEBCHESS" "456" "192.168.2.165" ""
30/01/2009 04:40:14 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
30/01/2009 21:49:53 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
31/01/2009 09:31:02 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
31/01/2009 14:30:43 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
31/01/2009 14:31:26 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
31/01/2009 14:31:36 # "Login Accepted WEBCHESS" "456" "192.168.2.205" ""
31/01/2009 17:46:44 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
31/01/2009 18:34:18 # "Login Accepted WEBCHESS" "456" "192.168.2.205" ""
31/01/2009 21:38:08 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
31/01/2009 23:55:15 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
01/02/2009 00:47:56 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
03/02/2009 19:26:07 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
03/02/2009 21:17:49 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
03/02/2009 23:38:03 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
04/02/2009 23:54:11 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
04/02/2009 23:57:29 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
05/02/2009 00:18:38 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
05/02/2009 00:18:38 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
05/02/2009 22:33:24 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
06/02/2009 00:44:25 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
06/02/2009 00:44:46 # "Login Accepted WEBCHESS" "456" "192.168.2.205" ""
06/02/2009 00:45:40 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
06/02/2009 00:55:02 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
07/02/2009 00:43:08 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
07/02/2009 00:44:59 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
07/02/2009 01:37:36 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
07/02/2009 01:40:28 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
07/02/2009 11:52:36 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
07/02/2009 19:49:19 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
08/02/2009 05:48:05 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
08/02/2009 06:08:44 # "Deleting refused games" "Game: 11"
08/02/2009 06:08:44 # "Deleting refused games" "Game: 13"
08/02/2009 06:08:44 # "Deleting refused games" "Game: 14"
08/02/2009 06:08:44 # "Deleting refused games" "Game: 16"
08/02/2009 06:08:44 # "Login Accepted WEBCHESS" "123" "192.168.2.205" ""
08/02/2009 21:15:20 # "Login Accepted WEBCHESS" "123" "192.168.2.165" ""
08/02/2009 21:16:07 # "Deleting refused games" "Game: 18"
08/02/2009 21:16:07 # "Deleting refused games" "Game: 17"
08/02/2009 21:16:07 # "Deleting refused games" "Game: 19"
08/02/2009 21:16:07 # "Deleting refused games" "Game: 22"
08/02/2009 21:16:07 # "Deleting refused games" "Game: 23"
08/02/2009 21:16:07 # "Deleting old games" "Game: 25"

ja und ich hab aber was irgindwo in einem anderen forum gelesen das es auch was mit dieser datei: .htaccess
zu tuen haben könnte?


Code:
#php_value error_reporting 2047                                                                                                                                                    
php_value display_errors on                                                                                                                                                        
php_value upload_tmp_dir /raid/web/www.trimbrain.com/phptmp/                                                                                                                       
#php_admin_value open_basedir /raid/web/web24/:/raid/web/web1/:/raid/phplibs/:/raid/web/web27/web/

php_flag register_globals off

RewriteEngine on
########## RewriteBase / - Use this if compwebchess is in your webspace root
########## RewriteBase /webchess2/ - Use this if compwebchess is in a subfolder
########## RewriteBase directive should always point to your compwebchess root
#RewriteBase /
RewriteBase /trimbrain.com/compwebchess2/
########## Begin - Rewrite rules to block out some common exploits
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

RewriteRule ^mygames.html mainmenu.php [L]
RewriteRule ^forum.html forum.php [L]
RewriteRule ^chat.html chat.php [L]
RewriteRule ^configure.html configure.php [L]
RewriteRule ^inviteplayer.html inviteplayer.php [L]
RewriteRule ^online.html inviteplayer.php?ponline=1 [L]
RewriteRule ^help.html help.php [L]
RewriteRule ^logout.html logout.php [L]
RewriteRule ^joingame.html joingame.php [L]
RewriteRule ^tournaments.html tournaments.php [L]
RewriteRule ^teams.html teams.php [L]
RewriteRule ^clubs.html groups.php [L]
RewriteRule ^ranking.html ranking.php [L]
RewriteRule ^allgames.html allgames.php [L]
RewriteRule ^recent_games.html recent_games.php [L]
RewriteRule ^server_stats.html server_stats.php [L]
RewriteRule ^vacation.html vacation.php [L]
RewriteRule ^annotate.html annotate.php [L]
RewriteRule ^archives.html archives.php [L]
RewriteRule ^mychessgame.html chess.php [L]
RewriteRule ^playerstats-([0-9]*).html stats_user.php?cod=$1 [L]

...das ist nervig ich weiss.Sorry deswegfen nochmal und natürlich danke
 
An der .htaccess kann es liegen, das ist korrekt.

Entferne mal zuerst alles(mache vorher ein Backup von der htaccess) ab der Zeile

Code:
RewriteEngine on

Wenn das keine Wirkung zeigt, entferne nach und nach auch die restlichen Zeilen und teste jedes mal, ob sich etwas ändert.
 
Ähhm....was hat geklappt?

Welcher Teil der .htaccess hat gestört.

Es ist zwar schön, wenn es jetzt geht, das Löschen von Passagen sollte aber primär dazu dienen, die Fehlerquelle einzugrenzen :-)

Was den Partl nach RewriteEngine On betrifft, der ist zum Teil für Sicherheitsaspekte gedacht.
Es wäre daher besser, zu sehen, wie man die RewriteEngine ans Laufen bekommst.
 
Zurück