mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
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;
|
|
|
|
?>
|