Welcome Guest, Not a member yet? Register   Sign In
Connection issues with MSSQL and IIS
#1

[eluser]trahma[/eluser]
I've been trying to start moving our systems in the direction of CodeIgniter but I've been fighting every step of the way with IIS. I feel like I'm close, but not close enough yet. The problem I'm now experiencing is that I keep getting the error message

Quote:Your database.php file does not appear to contain a valid configuration array.

I've been trying to find a way to track this problem down without much success. I have the error logging threshold up to 4 and I'm not seeing anything in my logs file. I have the database value set in my $autoload['config'] array so I know I'm good there. Also, I have a php application I wrote already connecting to MSSQL so I know that my problem shouldn't be there. Here's my database.php config file:

Code:
<?php  if (!defined('BASEPATH')) exit('No direct script access allowed');

$active_group = "default";

$db['default']['hostname'] = "dbserver";
$db['default']['username'] = "username";
$db['default']['password'] = "password";
$db['default']['database'] = "shows";
$db['default']['dbdriver'] = "mssql";
$db['default']['dbprefix'] = "";
$db['default']['active_r'] = TRUE;
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";


?>

Obviously I changed the hostname, username, and password settings for the post, but I've tried referring to the database server (it's a separate box from my IIS system) by both the hostname and IP address. Are there any other hooks somewhere to turn database logging up or is there something I'm missing?


Messages In This Thread
Connection issues with MSSQL and IIS - by El Forum - 07-17-2007, 09:48 AM
Connection issues with MSSQL and IIS - by El Forum - 07-17-2007, 10:17 AM
Connection issues with MSSQL and IIS - by El Forum - 07-17-2007, 11:01 AM
Connection issues with MSSQL and IIS - by El Forum - 07-17-2007, 11:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB