while testing on localhost, i observed an issue with the ROOTPATH. if the entire codeigniter file is move to an extra outer folder, i.e Framework -> Codeigniter -> the rest of the igniter files. the entire path would not resolve properly till you go change the path in path.php, index.php to fit in properly. yet this does not provide a proper solution, cus if you choose to do something like "
"
in the autoload psr4, it would not also resolve it till you add Framework befor the matrix.
the current code for the ROOTPATH is
my work around this is
then all codeigniter path can resolve properly.
unfortunately am unable to submit a PR at the moment for this
PHP Code:
'InternalApi' => ROOTPATH.'Matrix/InternalApi'
in the autoload psr4, it would not also resolve it till you add Framework befor the matrix.
the current code for the ROOTPATH is
PHP Code:
define('ROOTPATH', substr_replace(FCPATH, '', $pos, strlen($public.DIRECTORY_SEPARATOR)));
my work around this is
PHP Code:
define('ROOTPATH', realpath(__DIR__.'/../').DIRECTORY_SEPARATOR);
unfortunately am unable to submit a PR at the moment for this