The Zend standard for action names is camelCase, but if I create an action with a camel body, the request fails because it tries to call a method (action) without a camel shell!
Example:
I have an action called "changeEmail" in the "abc" module. This method is "changeEmailAction" (created by the Zend Tool). If I try to access / abc / changeEmail, I get an error message that says: "Message: The action" changeemail "does not exist and does not fall into __call ()."
The only way I was able to get it to work was to create action names only in lower case. This leads to terrible readability and contradicts the proposed naming convention. What am I missing?
Mikeh source share