I've got the same codebase running on a windows, linux, and mac. Everything works fine on windows and linux.
However on the mac, a specific controller is never being routed to.
I've got a UsersController with several actions, but no matter what I do, the router always routes back to the IndexController, and the indexAction -- like the UsersController is not found. All other routes in the app work just fine.
I copied the UsersController.php file to something like TestController.php file, and renamed the class to TestController.php -- that works just fine. It seems like there's something on mac thats blocking access to the specific "users" controller.
Anyone have any ideas?
Thanks!