1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
<?php
// Basic settings
// You must set these for the server to work
$databaseServer = "localhost";
$databaseUsername = "testUser";
$databasePassword = "testPassword";
$databaseName = "test";
// The URL of to the server.php script.
$fullServerURL = "http://localhost:8080/jcr13/game7/server.php";
// End Basic settings
// Customization settings
// Adjust these to change the way the server works.
// Prefix to use in table names (in case more than one application is using
// the same database). Two tables are created: "games" and "columns".
//
// If $tableNamePrefix is "test_" then the tables will be named
// "test_games" and "test_columns". Thus, more than one server
// installation can use the same database (or the server can share a database
// with another application that uses similar table names).
$tableNamePrefix = "demo_";
$enableLog = 1;
// for log view/clear operations
$logAccessPassword = "secret";
$blockRows = 9;
$blockColumns = 40;
?>
|