Codeigniter connection problems

0

I was working on a codeigniter project from wampserver and it ran perfectly but now I change to a mac and install the project in mamp and throws me the following error

  

A Database Error Occurred Unable to connect to your database server   using the provided settings. Filename: core / Loader.php Line Number:   347

$active_group = 'default';
$active_record = TRUE;

$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = '';
$db['default']['database'] = 'loteria';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
$db['default']['pconnect'] = TRUE;
$db['default']['autoinit'] = TRUE;                

Everything is fine because in Wamp I ran perfect.

    
asked by Ezequiel Guerra 01.06.2017 в 18:58
source

0 answers