/var/softaculous/jorani
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
config.php250470644editdlrm
database.php47890644editdlrm
edit.php42910644editdlrm
edit.xml4330644editdlrm
fileindex.php1930644editdlrm
import.php44040644editdlrm
info.xml31980644editdlrm
install.js9240644editdlrm
install.php60980644editdlrm
install.xml7860644editdlrm
md536880644editdlrm
notes.txt17240644editdlrm
_clone.php41350644editdlrm
Edit: /var/softaculous/jorani/database.php (4789B)
db->last_query() and profiling of DB queries. | When you run a query, with this setting set to TRUE (default), | CodeIgniter will store the SQL statement for debugging purposes. | However, this may cause high memory usage, especially if you run | a lot of SQL queries ... disable this to avoid that problem. | | The $active_group variable lets you choose which connection group to | make active. By default there is only one group (the 'default' group). | | The $query_builder variables lets you determine whether or not to load | the query builder class. */ $active_group = 'default'; $query_builder = TRUE; $_db_host = '[[softdbhost]]'; $_db_user = '[[softdbuser]]'; $_db_pass = '[[softdbpass]]'; $_db_name = '[[softdb]]'; $db['default'] = array( 'dsn' => 'mysql:host=' . $_db_host . ';dbname=' . $_db_name, 'hostname' => '', 'username' => $_db_user, 'password' => $_db_pass, 'database' => $_db_name, 'dbdriver' => 'pdo', 'dbprefix' => '', 'pconnect' => FALSE, 'db_debug' => (ENVIRONMENT !== 'production'), 'cache_on' => FALSE, 'cachedir' => '', 'char_set' => 'utf8', 'dbcollat' => 'utf8_general_ci', 'swap_pre' => '', 'encrypt' => FALSE, 'compress' => FALSE, 'stricton' => FALSE, 'failover' => array(), 'save_queries' => TRUE );