25 lines
815 B
PHP
25 lines
815 B
PHP
<?php
|
|
|
|
// This file contains all variables needed by other php scripts
|
|
|
|
// ----------------------------------------------------------------------------------------
|
|
// Variables for index.php
|
|
// ----------------------------------------------------------------------------------------
|
|
|
|
// where we can find the mysql database
|
|
$DBHost = "localhost";
|
|
$DBUserName = "nel";
|
|
$DBPassword = "";
|
|
$DBName = "nel";
|
|
|
|
// If true, the server will add automatically unknown user in the database
|
|
$AcceptUnknownUser = false;
|
|
|
|
// ----------------------------------------------------------------------------------------
|
|
// Variables for service_connection.inc
|
|
// ----------------------------------------------------------------------------------------
|
|
|
|
$LSHost = "compilo";
|
|
$LSPort = 49998;
|
|
|
|
?>
|