Skip to content

Instantly share code, notes, and snippets.

@skpy
Created December 7, 2011 15:03
Show Gist options
  • Save skpy/1443122 to your computer and use it in GitHub Desktop.
Save skpy/1443122 to your computer and use it in GitHub Desktop.
Habari MySQL config.php
<?php
Config::set( 'db_connection', array(
'connection_string'=>"mysql:host=FOOHOST;dbname=FOONAME",
'username'=> 'FOOUSER',
'password'=> 'FOOPASS',
'prefix'=>'',
));
$blog_data = array( 'blog_title' => 'Habari',
'admin_username' => 'admin',
'admin_pass1' => 'habari',
'admin_pass2' => 'habari',
'admin_email' => 'CHANGE@ME',
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment