Skip to content

Instantly share code, notes, and snippets.

@abbajbryant
Created September 22, 2011 02:27
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 abbajbryant/1233891 to your computer and use it in GitHub Desktop.
Save abbajbryant/1233891 to your computer and use it in GitHub Desktop.
database config file used with bake error
<?php
class DATABASE_CONFIG {
public $default = array(
'datasource' => 'Database/Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'root',
'password' => 'XXXXXXXXXX',
'database' => 'foundry',
'prefix' => '',
'encoding' => 'utf8',
'unix_socket' => '/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock',
);
public $test = array(
'datasource' => 'Database/Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'root',
'password' => 'XXXXXXXXXX',
'database' => 'foundry',
'prefix' => '',
'encoding' => 'utf8',
'unix_socket' => '/Applications/XAMPP/xamppfiles/var/mysql/mysql.sock',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment