We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e39c3 commit 63137f2Copy full SHA for 63137f2
inc/config.php
@@ -22,14 +22,19 @@
22
$UNITY_FILE = "http://localhost/ff/main.unity3d";
23
24
# Class configuration
25
+// Database
26
$DB = new Database();
27
$DB_CONNECTION = $DB = $DB->loadDbFromFile("database.db");
28
29
+// User
30
$USER = new User($DB_CONNECTION);
31
$USER->setTable("Accounts");
32
+$USER->cookie_name = $LOGIN_COOKIE_NAME;
33
34
+// Authentication / remember me
35
$AUTH = new AuthToken($DB_CONNECTION);
36
$AUTH->setTable("Auth_Tokens");
37
+$AUTH->cookie_name = $REMEMBER_COOKIE_NAME;
38
39
# Bcrypt encryption configuration
40
$bcrypt_options = [
0 commit comments