Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../phpcol
File: settings.php
<?php
[0] Fix | Delete
/*
[1] Fix | Delete
* Application name: PhpCollab
[2] Fix | Delete
* Path by root: ../includes/settings.php
[3] Fix | Delete
*
[4] Fix | Delete
* File auto-generated @ 2021-10-11 05:34am
[5] Fix | Delete
*
[6] Fix | Delete
* For more information about this file, visit:
[7] Fix | Delete
* https://github.com/phpcollab/phpcollab/wiki/Settings
[8] Fix | Delete
*
[9] Fix | Delete
*/
[10] Fix | Delete
[11] Fix | Delete
# PhpCollab version
[12] Fix | Delete
$version = "2.10.3";
[13] Fix | Delete
[14] Fix | Delete
# installation type
[15] Fix | Delete
# Options: (default) online | offline
[16] Fix | Delete
$installationType = "online";
[17] Fix | Delete
[18] Fix | Delete
# select database application
[19] Fix | Delete
# Options: mysql | postgresql | sqlserver
[20] Fix | Delete
$databaseType = "mysql";
[21] Fix | Delete
[22] Fix | Delete
# database parameters
[23] Fix | Delete
define("MYSERVER", "[[softdbhost]]");
[24] Fix | Delete
define("MYLOGIN", "[[softdbuser]]");
[25] Fix | Delete
define("MYPASSWORD", "[[softdbpass]]");
[26] Fix | Delete
define("MYDATABASE", "[[softdb]]");
[27] Fix | Delete
[28] Fix | Delete
# notification method
[29] Fix | Delete
# Option: (default) mail | smtp
[30] Fix | Delete
$notificationMethod = "mail";
[31] Fix | Delete
[32] Fix | Delete
# smtp parameters
[33] Fix | Delete
if ($notificationMethod === "smtp") {
[34] Fix | Delete
define("SMTPSERVER", "");
[35] Fix | Delete
define("SMTPLOGIN", "");
[36] Fix | Delete
define("SMTPPASSWORD", "");
[37] Fix | Delete
define("SMTPPORT", "");
[38] Fix | Delete
}
[39] Fix | Delete
[40] Fix | Delete
# create folder method
[41] Fix | Delete
# Options: (default) PHP | FTP
[42] Fix | Delete
$mkdirMethod = "PHP";
[43] Fix | Delete
[44] Fix | Delete
# ftp parameters
[45] Fix | Delete
# note: only needed if the mkdirMethod is set to FTP
[46] Fix | Delete
if ($mkdirMethod === "FTP") {
[47] Fix | Delete
# PhpCollab root according to ftp account
[48] Fix | Delete
# note: No slash at the end
[49] Fix | Delete
$ftpRoot = "";
[50] Fix | Delete
[51] Fix | Delete
define("FTPSERVER", "");
[52] Fix | Delete
define("FTPLOGIN", "");
[53] Fix | Delete
define("FTPPASSWORD", "");
[54] Fix | Delete
}
[55] Fix | Delete
[56] Fix | Delete
# Invoicing module
[57] Fix | Delete
$enableInvoicing = false;
[58] Fix | Delete
[59] Fix | Delete
# theme choice
[60] Fix | Delete
define("THEME", "default");
[61] Fix | Delete
[62] Fix | Delete
# newsdesk limiter
[63] Fix | Delete
$newsdesklimit = true;
[64] Fix | Delete
[65] Fix | Delete
# if 1 the admin logs in his homepage
[66] Fix | Delete
$adminathome = false;
[67] Fix | Delete
[68] Fix | Delete
# timezone GMT management
[69] Fix | Delete
$gmtTimezone = false;
[70] Fix | Delete
[71] Fix | Delete
# language choice
[72] Fix | Delete
# (default) en
[73] Fix | Delete
$langDefault = "[[language]]";
[74] Fix | Delete
[75] Fix | Delete
# Mantis bug tracking parameters
[76] Fix | Delete
$enableMantis = false;
[77] Fix | Delete
[78] Fix | Delete
if ($enableMantis === true) {
[79] Fix | Delete
# Mantis installation directory
[80] Fix | Delete
# note: add a slash at the end
[81] Fix | Delete
$pathMantis = "";
[82] Fix | Delete
}
[83] Fix | Delete
[84] Fix | Delete
# https related parameters
[85] Fix | Delete
$pathToOpenssl = "/usr/bin/openssl";
[86] Fix | Delete
[87] Fix | Delete
# login method, set to "CRYPT"
[88] Fix | Delete
# Options: (default) crypt | plain | md5
[89] Fix | Delete
# It is highly recommended to NOT use MD5 or PLAIN
[90] Fix | Delete
$loginMethod = "crypt";
[91] Fix | Delete
[92] Fix | Delete
# enable LDAP
[93] Fix | Delete
$useLDAP = false;
[94] Fix | Delete
if ($useLDAP) {
[95] Fix | Delete
$configLDAP["ldapserver"] = "";
[96] Fix | Delete
$configLDAP["searchroot"] = "";
[97] Fix | Delete
}
[98] Fix | Delete
[99] Fix | Delete
# htaccess parameters
[100] Fix | Delete
$htaccessAuth = false;
[101] Fix | Delete
if ($htaccessAuth) {
[102] Fix | Delete
# note: no slash at the end
[103] Fix | Delete
$fullPath = "";
[104] Fix | Delete
}
[105] Fix | Delete
[106] Fix | Delete
# file management parameters
[107] Fix | Delete
$fileManagement = true;
[108] Fix | Delete
[109] Fix | Delete
# Size in bytes for uploads
[110] Fix | Delete
# Default is 10Mb
[111] Fix | Delete
$maxFileSize = 10485760;
[112] Fix | Delete
[113] Fix | Delete
# Root Path
[114] Fix | Delete
# note: no slash at the end
[115] Fix | Delete
$root = "[[softurl]]";
[116] Fix | Delete
[117] Fix | Delete
# security issue to disallow php files upload
[118] Fix | Delete
$allowPhp = false;
[119] Fix | Delete
[120] Fix | Delete
# project site creation
[121] Fix | Delete
$sitePublish = true;
[122] Fix | Delete
[123] Fix | Delete
# enable update checker
[124] Fix | Delete
# (default) true
[125] Fix | Delete
$updateChecker = true;
[126] Fix | Delete
[127] Fix | Delete
# e-mail notifications
[128] Fix | Delete
# (default) true
[129] Fix | Delete
$notifications = true;
[130] Fix | Delete
[131] Fix | Delete
# show peer review area
[132] Fix | Delete
$peerReview = true;
[133] Fix | Delete
[134] Fix | Delete
# show items for home
[135] Fix | Delete
$showHomeBookmarks = true;
[136] Fix | Delete
$showHomeProjects = true;
[137] Fix | Delete
$showHomeTasks = true;
[138] Fix | Delete
$showHomeSubtasks = true;
[139] Fix | Delete
$showHomeDiscussions = true;
[140] Fix | Delete
$showHomeReports = true;
[141] Fix | Delete
$showHomeNotes = true;
[142] Fix | Delete
$showHomeNewsdesk = true;
[143] Fix | Delete
[144] Fix | Delete
# security issue to disallow auto-login from external link
[145] Fix | Delete
$forcedLogin = false;
[146] Fix | Delete
[147] Fix | Delete
# table prefix
[148] Fix | Delete
$tablePrefix = "[[dbprefix]]";
[149] Fix | Delete
[150] Fix | Delete
# database tables
[151] Fix | Delete
$tableCollab["assignments"] = "[[dbprefix]]assignments";
[152] Fix | Delete
$tableCollab["calendar"] = "[[dbprefix]]calendar";
[153] Fix | Delete
$tableCollab["files"] = "[[dbprefix]]files";
[154] Fix | Delete
$tableCollab["logs"] = "[[dbprefix]]logs";
[155] Fix | Delete
$tableCollab["members"] = "[[dbprefix]]members";
[156] Fix | Delete
$tableCollab["notes"] = "[[dbprefix]]notes";
[157] Fix | Delete
$tableCollab["notifications"] = "[[dbprefix]]notifications";
[158] Fix | Delete
$tableCollab["organizations"] = "[[dbprefix]]organizations";
[159] Fix | Delete
$tableCollab["posts"] = "[[dbprefix]]posts";
[160] Fix | Delete
$tableCollab["projects"] = "[[dbprefix]]projects";
[161] Fix | Delete
$tableCollab["reports"] = "[[dbprefix]]reports";
[162] Fix | Delete
$tableCollab["sorting"] = "[[dbprefix]]sorting";
[163] Fix | Delete
$tableCollab["tasks"] = "[[dbprefix]]tasks";
[164] Fix | Delete
$tableCollab["teams"] = "[[dbprefix]]teams";
[165] Fix | Delete
$tableCollab["topics"] = "[[dbprefix]]topics";
[166] Fix | Delete
$tableCollab["phases"] = "[[dbprefix]]phases";
[167] Fix | Delete
$tableCollab["support_requests"] = "[[dbprefix]]support_requests";
[168] Fix | Delete
$tableCollab["support_posts"] = "[[dbprefix]]support_posts";
[169] Fix | Delete
$tableCollab["subtasks"] = "[[dbprefix]]subtasks";
[170] Fix | Delete
$tableCollab["updates"] = "[[dbprefix]]updates";
[171] Fix | Delete
$tableCollab["bookmarks"] = "[[dbprefix]]bookmarks";
[172] Fix | Delete
$tableCollab["bookmarks_categories"] = "[[dbprefix]]bookmarks_categories";
[173] Fix | Delete
$tableCollab["invoices"] = "[[dbprefix]]invoices";
[174] Fix | Delete
$tableCollab["invoices_items"] = "[[dbprefix]]invoices_items";
[175] Fix | Delete
$tableCollab["services"] = "[[dbprefix]]services";
[176] Fix | Delete
$tableCollab["newsdeskcomments"] = "[[dbprefix]]newsdeskcomments";
[177] Fix | Delete
$tableCollab["newsdeskposts"] = "[[dbprefix]]newsdeskposts";
[178] Fix | Delete
[179] Fix | Delete
# demo mode parameters
[180] Fix | Delete
$demoMode = false;
[181] Fix | Delete
$urlContact = "https://www.sourceforge.net/projects/phpcollab";
[182] Fix | Delete
[183] Fix | Delete
# Gantt graphs
[184] Fix | Delete
$activeJpgraph = true;
[185] Fix | Delete
[186] Fix | Delete
# filter to see only logged user clients (in team / owner)
[187] Fix | Delete
$clientsFilter = true;
[188] Fix | Delete
[189] Fix | Delete
# filter to see only logged user projects (in team / owner)
[190] Fix | Delete
$projectsFilter = true;
[191] Fix | Delete
[192] Fix | Delete
# Enable help center support requests
[193] Fix | Delete
$enableHelpSupport = true;
[194] Fix | Delete
[195] Fix | Delete
# Return email address given for clients to respond too.
[196] Fix | Delete
$supportEmail = "";
[197] Fix | Delete
[198] Fix | Delete
# Support Type
[199] Fix | Delete
# Options: (default) team | admin
[200] Fix | Delete
# If team is selected, a notification will be sent to everyone in the team when a new request is added
[201] Fix | Delete
$supportType = "team";
[202] Fix | Delete
[203] Fix | Delete
# enable the redirection to the last visited page, EXPERIMENTAL DO NOT USE IT
[204] Fix | Delete
$lastvisitedpage = false;
[205] Fix | Delete
[206] Fix | Delete
# auto-publish tasks added from client site?
[207] Fix | Delete
$autoPublishTasks = false;
[208] Fix | Delete
[209] Fix | Delete
# html header parameters
[210] Fix | Delete
$setTitle = "phpCollab";
[211] Fix | Delete
$siteTitle = "phpCollab";
[212] Fix | Delete
$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).";
[213] Fix | Delete
$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";
[214] Fix | Delete
[215] Fix | Delete
# Email alerts
[216] Fix | Delete
$emailAlerts = false;
[217] Fix | Delete
[218] Fix | Delete
/**
[219] Fix | Delete
* Authentication Settings
[220] Fix | Delete
*/
[221] Fix | Delete
$resetPasswordTimes = [
[222] Fix | Delete
'tokenLifespan' => 60,
[223] Fix | Delete
'timeBetweenAttempts' => 15,
[224] Fix | Delete
'attemptLimit' => 3
[225] Fix | Delete
];
[226] Fix | Delete
[227] Fix | Delete
/**
[228] Fix | Delete
* Debugging Settings.
[229] Fix | Delete
* DO NOT Change these on a Production server unless you know what you are doing.
[230] Fix | Delete
* Refer to: https://phpcollab.com/debugging for more information
[231] Fix | Delete
*/
[232] Fix | Delete
[233] Fix | Delete
# enable development bar in footer
[234] Fix | Delete
$footerDev = false;
[235] Fix | Delete
[236] Fix | Delete
$logLevel = 400;
[237] Fix | Delete
[238] Fix | Delete
$uuid = "[[uuid]]";
[239] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function