@Wiredesignz: loading of views is not working as I would expect.
I have this view file: modules/cms/views/dashboard/dashboard_view.php. From within the controller you’d think that this would do the trick:
$this->load->view('dashboard_view', $data);
But it gives me this error:
An Error Was Encountered
Unable to locate the requested file: application/views/cms_dashboard/dashboard_view.php
The file is not being sought in the module views folder, but in application/views
Ok, so I make the path:
modules/cms/views/dashboard/dashboard_view.php
But still it’s trying to locate the file in application/views/cms_dashboard/
This can’t be good. Is there something wrong with my syntax?
PS: I’m on PHP5. Should I use the other version of ME then?