public function action_hmvc() { try { $this->response->body = Request::factory('test/admin/index/1/tid/1', false)->execute(); } catch (Request404Exception $e) { echo '404'; } }
Daniel Petrie wrote on Sunday 9th of October 2011:Your module main looks like its missing namespacing. It should read like this I believe. namespace Main; class Controller_Main extends \Controller
It looks like you're new here. If you want to get involved, click one of these buttons!