Menu

[r11]: / includes / settings_default.php  Maximize  Restore  History

Download this file

209 lines (158 with data), 6.1 kB

  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
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php
#Application name: PhpCollab
#Status page: 2
#Path by root: ../includes/settings_default.php
# installation type
$installationType = "online"; //select "offline" or "online"
# select database application
$databaseType = "mysql"; //select "sqlserver", "postgresql" or "mysql"
# database parameters
define('MYSERVER','localhost');
define('MYLOGIN','root');
define('MYPASSWORD','');
define('MYDATABASE','phpcollab');
# notification method
$notificationMethod = "mail"; //select "mail" or "smtp"
# smtp parameters (only if $notificationMethod == "smtp")
define('SMTPSERVER','');
define('SMTPLOGIN','');
define('SMTPPASSWORD','');
# create folder method
$mkdirMethod = "PHP"; //select "FTP" or "PHP"
# ftp parameters (only if $mkdirMethod == "FTP")
define('FTPSERVER','');
define('FTPLOGIN','');
define('FTPPASSWORD','');
# PhpCollab root according to ftp account (only if $mkdirMethod == "FTP")
$ftpRoot = ""; //no slash at the end
# Invoicing module
$enableInvoicing = "true";
# theme choice
define('THEME','default');
// NewsDesk
$newsdesklimit = 1;
// if 1 the admin logs in his homepage
$adminathome = 0;
# session.trans_sid forced
$trans_sid = "true";
# timezone GMT management
$gmtTimezone = "false";
# language choice
$langDefault = "en";
# Mantis bug tracking parameters
// Should bug tracking be enabled?
$enableMantis = "false";
// Mantis installation directory
$pathMantis = "http://localhost/mantis/"; // add slash at the end
# CVS parameters
// Should CVS be enabled?
$enable_cvs = "false";
// Should browsing CVS be limited to project members?
$cvs_protected = "false";
// Define where CVS repositories should be stored
$cvs_root = "D:\cvs"; //no slash at the end
// Who is the owner CVS files?
// Note that this should be user that runs the web server.
// Most *nix systems use "httpd" or "nobody"
$cvs_owner = "httpd";
// CVS related commands
$cvs_co = "/usr/bin/co";
$cvs_rlog = "/usr/bin/rlog";
$cvs_cmd = "/usr/bin/cvs";
# https related parameters
$pathToOpenssl = "/usr/bin/openssl";
# login method, set to "CRYPT" in order CVS authentication to work (if CVS support is enabled)
$loginMethod = "CRYPT"; //select "MD5", "CRYPT", or "PLAIN"
# enable LDAP
$useLDAP = "false";
$configLDAP[ldapserver] = "your.ldap.server.address";
$configLDAP[searchroot] = "ou=People, ou=Intranet, dc=YourCompany, dc=com";
# htaccess parameters
$htaccessAuth = "false";
$fullPath = "/usr/local/apache/htdocs/phpcollab/files"; //no slash at the end
# file management parameters
$fileManagement = "true";
$maxFileSize = 51200; //bytes limit for upload
$root = "http://localhost/phpcollab"; //no slash at the end
# security issue to disallow php files upload
$allowPhp = "false";
# project site creation
$sitePublish = "true";
# enable update checker
$updateChecker = "true";
# e-mail notifications
$notifications = "true";
# show peer review area
$peerReview = "true";
# show items for home
$showHomeBookmarks = "true";
$showHomeProjects = "true";
$showHomeTasks = "true";
$showHomeDiscussions = "true";
$showHomeReports = "true";
$showHomeNotes = "true";
$showHomeNewsdesk = "true";
$showHomeSubtasks = "true";
# security issue to disallow auto-login from external link
$forcedLogin = "false";
# table prefix
$tablePrefix = "";
# database tables
$tableCollab["assignments"] = "assignments";
$tableCollab["calendar"] = "calendar";
$tableCollab["files"] = "files";
$tableCollab["logs"] = "logs";
$tableCollab["members"] = "members";
$tableCollab["notes"] = "notes";
$tableCollab["notifications"] = "notifications";
$tableCollab["organizations"] = "organizations";
$tableCollab["posts"] = "posts";
$tableCollab["projects"] = "projects";
$tableCollab["reports"] = "reports";
$tableCollab["sorting"] = "sorting";
$tableCollab["tasks"] = "tasks";
$tableCollab["teams"] = "teams";
$tableCollab["topics"] = "topics";
$tableCollab["phases"] = "phases";
$tableCollab["support_requests"] = "support_requests";
$tableCollab["support_posts"] = "support_posts";
$tableCollab["subtasks"] = "subtasks";
$tableCollab["updates"] = "updates";
$tableCollab["bookmarks"] = "bookmarks";
$tableCollab["bookmarks_categories"] = "bookmarks_categories";
$tableCollab["invoices"] = "invoices";
$tableCollab["invoices_items"] = "invoices_items";
$tableCollab["services"] = "services";
$tableCollab["newsdeskcomments"] = "newsdeskcomments";
$tableCollab["newsdeskposts"] = "newsdeskposts";
# PhpCollab version
$version = "2.5";
# demo mode parameters
$demoMode = "false";
$urlContact = "http://www.sourceforge.net/projects/phpcollab";
# Gantt graphs
$activeJpgraph = "true";
# developement options in footer
$footerDev = "false";
# filter to see only logged user clients (in team / owner)
$clientsFilter = "false";
# filter to see only logged user projects (in team / owner)
$projectsFilter = "false";
# Enable help center support requests, values "true" or "false"
$enableHelpSupport = "true";
# Return email address given for clients to respond too.
$supportEmail = "email@yourdomain.com";
# Support Type, either team or admin. If team is selected a notification will be sent to everyone in the team when a new request is added
$supportType = "team";
# enable the redirection to the last visited page, EXPERIMENTAL DO NOT USE IT
$lastvisitedpage = false;
# auto-publish tasks added from client site?
$autoPublishTasks = false;
# html header parameters
$setDoctype = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">";
$setTitle = "PhpCollab";
$setDescription = "Groupware module. Manage web projects with team collaboration, users management, tasks and projects tracking, files approval tracking, project sites clients access, customer relationship management (Php / Mysql, PostgreSQL or Sql Server).";
$setKeywords = "PhpCollab, phpcollab.com, Sourceforge, management, web, projects, tasks, organizations, reports, Php, MySql, Sql Server, mssql, Microsoft Sql Server, PostgreSQL, module, application, module, file management, project site, team collaboration, free, crm, CRM, cutomer relationship management, workflow, workgroup";
# Email alerts.
$emailAlerts = "false";
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.