/var/softaculous/orange
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
changelog.txt17570644editdlrm
clone.php156260644editdlrm
Conf.php20880644editdlrm
edit.php48460644editdlrm
edit.xml4330644editdlrm
extend.php90400644editdlrm
fileindex.php1390644editdlrm
getdata.php11770644editdlrm
import.php34560644editdlrm
info.xml16220644editdlrm
install.js9240644editdlrm
install.php201240644editdlrm
install.xml15160644editdlrm
md512390644editdlrm
NOTES.txt17700644editdlrm
update_pass.php5180644editdlrm
_upgrade.php43330644editdlrm
_upgrade.xml2540644editdlrm
Edit: /var/softaculous/orange/Conf.php (2088B)
. */ class Conf { private string $dbHost; private string $dbPort; private string $dbName; private string $dbUser; private string $dbPass; public function __construct() { $this->dbHost = '[[softdbhost]]'; $this->dbPort = '3306'; if (defined('ENVIRONMENT') && ENVIRONMENT == 'test') { $prefix = defined('TEST_DB_PREFIX') ? TEST_DB_PREFIX : ''; $this->dbName = $prefix . 'test_[[softdb]]'; } else { $this->dbName = '[[softdb]]'; } $this->dbUser = '[[softdbuser]]'; $this->dbPass = '[[softdbpass]]'; } /** * @return string */ public function getDbHost(): string { return $this->dbHost; } /** * @return string */ public function getDbPort(): string { return $this->dbPort; } /** * @return string */ public function getDbName(): string { return $this->dbName; } /** * @return string */ public function getDbUser(): string { return $this->dbUser; } /** * @return string */ public function getDbPass(): string { return $this->dbPass; } }