Array
(
[0] => /data/www/website/app/
[1] => /data/www/website/modules/novius/
[2] => /data/www/website/packages/orm/
[3] => /data/www/website/app/fuel/
)
Array
(
[0] => /data/www/website/modules/novius/
[1] => /data/www/website/app/
[2] => /data/www/website/modules/novius/
[3] => /data/www/website/packages/orm/
[4] => /data/www/website/app/fuel/
)
@Julian Esperat, if you want the APPPATH to be searched first, add it to the request search path using the prefix switch, so it will be inserted before any globally defined paths, and before local request search paths.
See http://fuelphp.com/docs/classes/request.html#method_add_path.
The $prefix parameter determines if the path you're adding will be appended (default) or prepended (or prefixed)...
So in your module controller you can add
\Request::active->add_path(APPPATH, true);
It looks like you're new here. If you want to get involved, click one of these buttons!