Welcome Guest, Not a member yet? Register   Sign In
Are Multiple Sub-folders for Controllers Allowed?
#10

[eluser]searain[/eluser]
CI 2.0

Router
set_directory changed to
Code:
function set_directory($dir)
    {
        $this->directory = str_replace(array('/', '.'), '', $dir).'/';
    }

So in your codes, set_directory won't work due to the / would be replaced.

We would need to override the set_directory back
Code:
function set_directory($dir)
    {
        $this->directory = $dir.'/';
    }

But would it affect other codes if we do so?


Messages In This Thread
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 07-17-2008, 11:31 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 07-21-2008, 12:12 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 07-21-2008, 12:20 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 07-21-2008, 12:22 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 07-21-2008, 07:21 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 07-22-2008, 05:51 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 07-30-2008, 04:27 AM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 01-16-2009, 11:53 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 03-25-2009, 10:13 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 12-04-2010, 11:44 PM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 05-26-2011, 01:46 AM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 10-26-2012, 12:14 AM
Are Multiple Sub-folders for Controllers Allowed? - by El Forum - 04-21-2014, 10:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB