forked from edennz/artoolkit6-calibration-server
-
Notifications
You must be signed in to change notification settings - Fork 4
/
server_data.php
22 lines (19 loc) · 925 Bytes
/
server_data.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/********************************************************************
* This file is where you set the data related to your server.
********************************************************************/
//error_reporting(E_ALL);
if (! defined('DEBUG')) {
define('DEBUG', false); // Set to true to turn debugging on
}
$dbIP = '127.0.0.1'; // Database server IP.
$dbPort = 3306; // Database server port.
$dbUser = 'USERNAME'; // Database User Name for read access
$dbPass = 'PASSWORD'; // Database Password for read access
$dbUserWrite = 'USERNAME'; // Database User Name for write access
$dbPassWrite = 'PASSWORD'; // Database Password for write access
$dbName = 'calib_camera'; // Database Name
// ENTER YOUR OWN SECRET TEXT STRING BELOW.
$serverAuthTokenUpload = '';
$serverAuthTokenDownload = 'ARToolKit.Rocks';
?>