-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
36 lines (35 loc) · 1.24 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
<?php
$dbServer = 'localhost';
$dbUsername = 'root';
$dbPassword = '';
$dbDatabase = 'jisort_db';
$adminConfig = array(
'adminUsername' => "admin",
'adminPassword' => "7488e331b8b64e5794da3fa4eb10ad5d",
'notifyAdminNewMembers' => "0",
'defaultSignUp' => "1",
'anonymousGroup' => "anonymous",
'anonymousMember' => "guest",
'groupsPerPage' => "10",
'membersPerPage' => "10",
'recordsPerPage' => "10",
'custom1' => "Course",
'custom2' => "",
'custom3' => "",
'custom4' => "",
'MySQLDateFormat' => "%m/%d/%Y",
'PHPDateFormat' => "n/j/Y",
'PHPDateTimeFormat' => "m/d/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/jisort\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' => ""
);