-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnoah.ini.php
63 lines (45 loc) · 2.15 KB
/
noah.ini.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
<?php
defined('_NOAH') or die('Restricted access');
/******************************************************************************************************************
Initialization file used by autoinstall.php
*******************************************************************************************************************/
$installParameters = array(
// Database host name:
"hostName"=>"localhost",
// Database user name:
"dbUser"=>"root",
// Database password:
"dbUserPw"=>"",
// Classifieds database name:
"dbName"=>"classdevel",
// Table prefix. If the classifieds database is happened to be shared with other programs,
// this can be handy to avoid name collisions between table names. If the database is used by Noah's only, however,
// simply leave this blank.
"dbPrefix"=>"noah_",
// Database port: if you leave this blank, the default will be used:
"dbPort"=>"",
// Database socket: if you leave this blank, the default will be used:
"dbSocket"=>"",
// Noah's install directory. By default, it will be installed in the same directory where the autoinstall.php script is called from.
// A caution for those who call autoinstall.php from the command line: the directory where the script is called from is
// not necessarily the same as it resides in!
"noahDir"=>".",
//**********************************************************************************************************************************
// The following parameters can be also set later through the admin interface of the program:
// This will appear as the address in the 'From:' field of emails the program sends.
// If you leave this blank, the program may not be able send out email notifications!
"adminEmail"=>"",
// This will appear as the name in the 'From:' field of email notifications the program sends out:
"adminFromName"=>"",
// Use the following parameters if you want that the program sends out the notification emails through an SMTP server.
// Otherwise, the native Php mail function will be used.
// SMTP server name:
"smtpServer"=>"",
// SMTP user name:
"smtpUser"=>"",
// SMTP password
"smtpPass"=>"",
// Fall back on native mail if SMTP fails
"fallBackNative"=>FALSE,
);
?>