/var/softaculous/igniter
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
.env49840755editdlrm
.htaccess3120755editdlrm
App.php165320755editdlrm
config.php184590755editdlrm
Database.php22940755editdlrm
fileindex.php1500755editdlrm
import.php46590755editdlrm
info.xml41450755editdlrm
install.js9210755editdlrm
install.php39300755editdlrm
install.xml2880755editdlrm
md527970755editdlrm
notes.txt1850755editdlrm
_clone.php24000755editdlrm
Edit: /var/softaculous/igniter/Database.php (2294B)
'', 'hostname' => '[[softdbhost]]', 'username' => '[[softdbuser]]', 'password' => '[[softdbpass]]', 'database' => '[[softdb]]', 'DBDriver' => 'MySQLi', 'DBPrefix' => '[[dbprefix]]', 'pConnect' => false, 'DBDebug' => true, 'charset' => 'utf8', 'DBCollat' => 'utf8_general_ci', 'swapPre' => '', 'encrypt' => false, 'compress' => false, 'strictOn' => false, 'failover' => [], 'port' => 3306, ]; /** * This database connection is used when * running PHPUnit database tests. */ public array $tests = [ 'DSN' => '', 'hostname' => '127.0.0.1', 'username' => '', 'password' => '', 'database' => ':memory:', 'DBDriver' => 'SQLite3', 'DBPrefix' => 'db_', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE FOR CI DEVS 'pConnect' => false, 'DBDebug' => true, 'charset' => 'utf8', 'DBCollat' => 'utf8_general_ci', 'swapPre' => '', 'encrypt' => false, 'compress' => false, 'strictOn' => false, 'failover' => [], 'port' => 3306, 'foreignKeys' => true, 'busyTimeout' => 1000, ]; public function __construct() { parent::__construct(); // Ensure that we always set the database group to 'tests' if // we are currently running an automated test suite, so that // we don't overwrite live data on accident. if (ENVIRONMENT === 'testing') { $this->defaultGroup = 'tests'; } } }