quick intro: I used Kohana for a big and full rewrite, then stumbled upon Fuelphp and (re)started from scratch because of the many features built-in and the clear structure. I was then tempted by Laravel (simply because I tried to anticipate the switching cost of moving to Fuel 2.0), but I'm back to Fuel, full speed: this framework is that awesome :)
I'm using V1.4 on PHP 5.4. Web servers are php built-in and/or nginx 1.2.1
I've setup a rest controller and the proper route for it, but with both web servers, I get the following error:
GET 405 Method Not Allowed
Here is the controller:
class Controller_Ajax_Index extends Controller_Rest {
I was just trying to setup a rest controller for a GET request.
I did it numerous time, but in this case something went wrong while using a controller name "ajax".
I though "ajax" may be a reserved name somewhere in the core code, but it was a routing problem; I was sending an incorrect action, hence the "Method not allowed" error.