I have a cakephp recipe website at http://www.projectpotluck.com I've been getting spam recipe submissions from a non-registered user. How is it possible to submit a recipe when not registered or logged in and how can I prevent it?
Considering I was able to get to the "Add Recipe" page without login in, I would suggest you revisit your user login process, as it's clearly not working as expected.
Yes, that was the problem. I've since added the Auth component to my recipes controller. Thanks.