| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/softaculous/helpdeskz/ |
Upload File : |
<?php
/**
* @package EvolutionScript
* @author: EvolutionScript S.A.C.
* @Copyright (c) 2010 - 2020, EvolutionScript.com
* @link http://www.evolutionscript.com
*/
namespace Config;
use CodeIgniter\Config\BaseConfig;
class Helpdesk extends BaseConfig
{
#Database host
const DB_HOST = '[[softdbhost]]';
#Database username
const DB_USER = '[[softdbuser]]';
#Database password
const DB_PASSWORD = '[[softdbpass]]';
#Database name
const DB_NAME = '[[softdb]]';
#Database table prefix
const DB_PREFIX = '[[dbprefix]]';
#Database port, do not change it if you are not sure
const DB_PORT = 3306;
#URL of your helpdesk
const SITE_URL = '[[softurl]]';
#Upload path for images used in HTML editor and logo
const UPLOAD_PATH = FCPATH.'upload';
#Default helpdesk language
const DEFAULT_LANG = 'en';
#URI name to access to staff panel. Ex: staff / then you can access in http://helpdesk.com/staff
const STAFF_URI = 'staff';
}