SpamBlocker

Spam Blocker is a CakePHP Behavior that automatically before after a comment is made. Each comment is tested upon a point system to determine if it should be approved, set to pending (high points), or marked as spam / deleted (low points).

Entries for CakePHP

So I never worked much with named parameters before in CakePHP, but recently I needed a way to filter data. It seemed passing many arguments to the action wasn't the best or correct approach. So I went off and wrote my own method to grab the value of named parameters. Continue reading...
It seems the good ole developers over at CakePHP have released an update to their 1.2 Final version, a now 1.2 Stable. As always I enjoy and appreciate how quickly the Cake team fixes, rewrites and optimizes the Cake engine. Continue reading...
When a form is submitted in CakePHP, any errors that fail the model validation are displayed after each respective input field. But if you're like me and really dislike that structure and output, and would rather have your errors displayed in a list above the form, then this is how you do it. Continue reading...
After diving into CakePHP, I thought it best to learn the AuthComponent (a user login and authentication system). In this tutorial I will teach you how to write the code and to use it accordingly. Continue reading...
After diving into CakePHP, I thought some good practice was to use their Auth Component (A prebuilt user login and authentication system). While working with it, I ran into a few problems, it was tiresome debugging it. Continue reading...