-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfsl_config.php
74 lines (55 loc) · 2.41 KB
/
fsl_config.php
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
//Config file for FSL
function configure()
{
option('fsl_version', "20250326");
option('env', ENV_PRODUCTION);
option('base_uri', "/projects/github/fsl"); //set if app is not in web root directory but in a subdirectory
option('session', 'fsl'); // enable with a specific session name
//##############################################
//encryption configuration
// IMPORTANT: Set your encryption key here!
// You can generate a secure key by running this command in terminal:
// php -r "echo base64_encode(random_bytes(32));"
//
// ⚠️ WARNING: If you change this key, previously encrypted data will not be decryptable
// ⚠️ WARNING: Keep this key secret and secure
// ⚠️ WARNING: Do not commit the actual key to version control
option('global_encryption_key', 'X9WpXFpuqmvcJ4pYHgbhKPV8VHQTzqjhN0k6/bAe5rM=');
//##############################################
//fsl configurations
option('fsl_session_length', 300); // session timeout in seconds, default is 300 seconds or 5 minutes. PHP default is typically 24 minute
#######################################################################
#Database Connections
######################################################################
#Initiate a DB connection (using PDO)
#
# Example PDO Usage for data models
# function post_find_all()
# {
# $db = option('db_conn');
# $sql = "SELECT * FROM posts ORDER BY modified_at DESC SQL;"
# $result = array();
# $stmt = $db->prepare($sql);
# if ($stmt->execute())
# {
# return $stmt->fetchAll(PDO::FETCH_ASSOC);
# }
# return false;
# }
# uncomment this section below if going to use a DB using PDO
/*
option('db_host','localhost');
option('db_name','testdb');
option('db_username','root');
option('db_password','test');
try{
$obj_db = new PDO('mysql:host='.option("db_host").';dbname='.option("db_name").';charset=utf8mb4', option("db_username"), option("db_password"));
$obj_db->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING );
$GLOBALS['obj_db'] = $obj_db;
}catch(PDOException $e){
halt(SERVER_ERROR,"Connexion failed: ".$e); # raises an error / renders the error page and exit.
}
*/
}
?>