Can't use requestAction from Shell in Cakephp 2.5
问题 As stated, when I use in a shell : $this->requestAction('/sites/zaz/option1'); The action doesn't get triggered. To test this, I tried : public function zaz($option1 = null) { CakeLog::write('acces', 'action triggered'); return 'got it !'; } And the action isn't done and there is no log written whatsoever. All my other logs do work. So I tried : $this->requestAction('/sites/actionwhichdoesntexist/option1'); And I got an error stating that the action doesn't exist. I really need to use