Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Something like [controller]/_404_ ?
  • Hello, I´m searching for something like [controller]/_404_, when the controller was found, but the method not.
  • Create a router() method and take care of your own in-controller routing. Described in the docs.
  • If you're trying to find the default method that comes with the installation, you're looking for it like such: function action_404() Opposed to function 404() This should also be in your fuel/app/classes/controller/welcome.php file. The "action_" prefix should be attached to every function that is executable through the HMVC. Read more on the documentation here: http://fuelphp.com/docs/general/controllers/base.html Not sure if this was what you are looking for, but hopefully it helps.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion