Welcome Guest, Not a member yet? Register   Sign In
Database connection error
#3

[eluser]John_Betong_002[/eluser]
Try this:

Save this code to ./application/config/database_DEBUG.php
Code:
<?php
// **********************************

    // cosmetic stuff
    if(! defined('jj'))
    {
      define('jj', '<br />');
    }
    
    echo '<b>Database configuration:</b>';
    echo '<pre>';
      print_r($db['default']);
    echo '</pre>';

    echo    'Trying to connect: ';
    $dbh = mysql_connect
              (
                $db['default']['hostname'],
                $db['default']['username'],
                $db['default']['password'])
                 or
                die(jj .'Cannot connect to the database because: ' . mysql_error()
              );
    
    $connected    = mysql_select_db ($db['default']['database']);
    
    $msg     = 'Big Problen cannot connect???'; // default
    if($connected)
    {
        $msg = 'Connected OK';
    }//
    echo jj, jj,  $msg;
    
    die(jj. jj.'<b>Debug:</b> file: ' .__FILE__ . '--&gt; Line: ' .__LINE__);

// ***********************************
&nbsp;
Then include the file in your database.php
&nbsp;

./application/config/database.php
Code:
...
...
...
include 'database_DEBUG,php';
&nbsp;
&nbsp;


Messages In This Thread
Database connection error - by El Forum - 05-28-2011, 08:27 AM
Database connection error - by El Forum - 05-28-2011, 11:12 AM
Database connection error - by El Forum - 05-28-2011, 12:00 PM
Database connection error - by El Forum - 05-28-2011, 04:17 PM
Database connection error - by El Forum - 05-28-2011, 04:25 PM
Database connection error - by El Forum - 06-01-2011, 05:24 AM
Database connection error - by El Forum - 08-19-2011, 02:42 AM
Database connection error - by El Forum - 08-19-2011, 03:35 AM
Database connection error - by El Forum - 03-07-2012, 05:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB