Skip to content

Instantly share code, notes, and snippets.

@Guferos
Created May 1, 2017 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Guferos/5cd9a8ea8a60b161afcce9963482bba3 to your computer and use it in GitHub Desktop.
Save Guferos/5cd9a8ea8a60b161afcce9963482bba3 to your computer and use it in GitHub Desktop.
Example local config file for the Codeigniter
<?php
return array(
'database' => array(
'db' => array(
'dsn' => '',
'hostname' => '127.0.0.1:8889',
'username' => 'root',
'password' => 'root',
'database' => 'europackaging_webapp',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => TRUE,
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
)
),
'config' => array(
'base_url' => 'http://10.128.0.149:8999'
)
)
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment