Welcome Guest, Not a member yet? Register   Sign In
Vanilla Integration with CI --> Problem
#3

[eluser]LAMPguru[/eluser]
I did try, I went through the files, one by one to see if I mistyped or even skipped any step.

Like located the file that seems to generating that error, and it's the Common.php under the codeigniter folder located in the system folder.
from line #100
Code:
function &get;_config()
{
    static $main_conf;
        
    if ( ! isset($main_conf))
    {
        if ( ! file_exists(APPPATH.'/config/config'.EXT))
        {
            exit('The configuration file config'.EXT.' does not exist.');
        }
        
        require(APPPATH.'config/config'.EXT);
        
        if ( ! isset($config) OR ! is_array($config))
        {
            exit('Your config file does not appear to be formatted correctly.');
        }

        $main_conf[0] =& $config;
    }
    return $main_conf[0];
}

I found condeigniter config file under the config folder located in the application folder and is not missing
Keep in mind my application folder and system folder are both a the root level


Messages In This Thread
Vanilla Integration with CI --> Problem - by El Forum - 12-11-2007, 03:35 PM
Vanilla Integration with CI --> Problem - by El Forum - 12-11-2007, 05:43 PM
Vanilla Integration with CI --> Problem - by El Forum - 12-12-2007, 05:20 AM
Vanilla Integration with CI --> Problem - by El Forum - 12-12-2007, 03:40 PM
Vanilla Integration with CI --> Problem - by El Forum - 12-12-2007, 03:54 PM
Vanilla Integration with CI --> Problem - by El Forum - 12-12-2007, 04:20 PM
Vanilla Integration with CI --> Problem - by El Forum - 12-12-2007, 04:25 PM



Theme © iAndrew 2016 - Forum software by © MyBB