-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
38 lines (37 loc) · 1.34 KB
/
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
<?php
$dbServer = 'localhost';
$dbUsername = 'root';
$dbPassword = '';
$dbDatabase = 'hrcv3';
$appURI = 'hrcv3';
$host = 'localhost';
$adminConfig = array(
'adminUsername' => "chrisagon",
'adminPassword' => "\$2y\$10\$Nt4Au06ke79Nvz3XlUU4E.VOOtqYwLYrBnVV26GbBOp5G7FN9ND.G",
'notifyAdminNewMembers' => "1",
'defaultSignUp' => "1",
'anonymousGroup' => "anonymous",
'anonymousMember' => "guest",
'groupsPerPage' => "10",
'membersPerPage' => "10",
'recordsPerPage' => "10",
'custom1' => "Prénom",
'custom2' => "Nom",
'custom3' => "Matricule",
'custom4' => "Statut",
'MySQLDateFormat' => "%d/%m/%Y",
'PHPDateFormat' => "j/n/Y",
'PHPDateTimeFormat' => "d/m/Y, h:i a",
'senderName' => "Membership management",
'senderEmail' => "[email protected]",
'approvalSubject' => "Your membership is now approved",
'approvalMessage' => "Dear member,\r\n\r\nYour membership is now approved by the admin. You can log in to your account here:\r\nhttp://localhost/hrcv3\r\n\r\nRegards,\r\nAdmin",
'hide_twitter_feed' => "",
'maintenance_mode_message' => "<b>Our website is currently down for maintenance</b><br>\r\nWe expect to be back in a couple hours. Thanks for your patience.",
'mail_function' => "mail",
'smtp_server' => "",
'smtp_encryption' => "",
'smtp_port' => "25",
'smtp_user' => "",
'smtp_pass' => ""
);