I have been using CI just fine using the MySQL driver. I want to use the mysqli driver instead, but as soon as I change it (just add the ā€˜i’ at the end of mysql, and added the port number) I get the following error message

A Database Error Occurred

Unable to connect to your database server using the provided settings.

Filename: core/Loader.php

Line Number: 232 

my setting look like this:

$db['default']['hostname'] = $hostname;
$db['default']['username'] = $username;
$db['default']['password'] = $password;
$db['default']['database'] = $database;
$db['default']['dbdriver'] = 'mysqli';
$db['default']['port']     = "3306";  
$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; 

where
$hostname = 'localhost';
$username = 'myusernamegoeshere';
$password = 'mypasswordgoeshere';
$database = 'mydatabasenamegoeshere'; 

Using: CI 2.0.2 php 5.3.4 Apache/2.2.17 (Unix) mysql 5.5.13 mysql.default_port 3306

Am I doing anything wrong?

Thank you,

link|improve this question

59% accept rate
Is your DB Server started? – Ashwini Dhekane Jan 10 at 17:52
feedback

4 Answers

I think, it depends on the hosting. There is something wrong with PHP configration, IMHO.
First, debug your database connection using this script at the end of my ./config/database.php :

...
  ...
  ...
  echo '<pre>';
     print_r($db['default']);
  echo '</pre>';

  echo 'Trying to connect to database: ' .$db['default']['database'];
  $dbh=mysql_connect
  (
    $db['default']['hostname'],
    $db['default']['username'],
    $db['default']['password'])
    or die('Cannot connect to the database because: ' . mysql_error());
    mysql_select_db ($db['default']['database']);

    echo '<br />   Connected OK:'  ;
    die( 'file: ' .__FILE__ . '--> Line: ' .__LINE__); 

Then see what the problem is.

link|improve this answer
feedback

If that is all you have changed, you may not have the mysqli driver installed or enabled within your PHP configuration.

Check for its presence using phpinfo(), or in your php.ini file (extension=php_mysqli....).

link|improve this answer
Than you for your answer. I believe starting with php 5.3 mysqli is enabled by default. But I did check my php info, and this is what I saw d.pr/FUZ6 – Onema Aug 31 '11 at 18:23
1  
OK. Change the log level to 4 in config.php, and check app/logs/log-2011-08-31.php file for any obvious errors (once you've refreshed the page in your app). Look for lines with mysqli_connect() in it. – Craig A Rodway Aug 31 '11 at 22:05
feedback

If you used this to secure your server: http://www.thonky.com/how-to/prevent-base-64-decode-hack/

And then got the error, Code Igniter needs mysql_pconnect() in order to run.

I figured it out once I realized all the code-igniter websites on the server were broken, so it wasn't a localized connection issue.

link|improve this answer
feedback

Problem solved! I was having all my website set up first in XAMMP, then i had to transfer it to LAMP, in a SUSE installation of LAMP , where i got this error.

The problem is that these parameters in the database.php file should not be initialised. Just leave username and password blank. that's just it.

(my first and lame guess would be that's because of old version of mysql, as built-in installations come with older versions..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.