Welcome Guest, Not a member yet? Register   Sign In
Problems sending mail using SMTP
#3

[eluser]Unknown[/eluser]
I saw the same problem, but fixed it in a different way. I changed _ci_init_class() in Loader.php to the following:

// Is there an associated config file for this class?
if ($config === NULL)
{
$config = NULL;
if (file_exists(APPPATH.'config/'.$class.EXT))
{
include(APPPATH.'config/'.$class.EXT);
}
elseif (file_exists(APPPATH.'config/'.strtolower($class).EXT))
{
include(APPPATH.'config/'.strtolower($class).EXT);
}

That way it checks for both the mixed and lowercase versions of the config name. I think a lot of other things are checked for this way as well. Not sure why they missed this one...


Messages In This Thread
Problems sending mail using SMTP - by El Forum - 12-06-2007, 11:41 AM
Problems sending mail using SMTP - by El Forum - 12-06-2007, 12:10 PM
Problems sending mail using SMTP - by El Forum - 01-05-2008, 03:09 PM



Theme © iAndrew 2016 - Forum software by © MyBB