3Vote!
Top Questions - Stack Overflow (Free subscription) | 11/19/2009
I have an existing web application that I am converting to use CakePHP. The problem is that the primary keys for most of the tables are in this format "${table_name}_id" (story_id) instead of the CakePHP way of 'id' When ever I try to update some of the fields for a row in the story table, the Save() function will return false. Is there any way of getting a more detailed error report from...
3Vote!
Top Questions - Stack Overflow (Free subscription) | 11/19/2009
If I'm being sent an HTTP Post where the body of the http request is just a UTF8 encoded string, how do I access that data in my cakephp controller? It appears that $this-> params only contains the following: { "pass":[], "named":[], "controller":"users", "action":"checkin", "plugin":null, "url":{ "ext":"json",...
5Vote!
Mozilla Webdev (Free subscription) | 11/18/2009
Yesterday Wil Clouser wrote up a blog post detailing infrastructure changes for addons.mozilla.org in 2010. Notable changes are: Migrating from CakePHP to Django Moving from SVN to Git Continuous integration Faster deployment Processing data offline Improved documentation Take a look, it’s a good overview of the technical challenges of managing a large and complex website at an enormous scale....
3Vote!
PHPDeveloper.org (Free subscription) | 11/12/2009
The php|architect podcast has posted their latest episode - "Bake'n'Shake" with a few extra cast members like Nate Abele , Davey Shafik along with the usual crowd. We're back with another episode of the php|architect Podcast'"and, to make up for the hiatus, this one is extra long, clocking in at almost one full hour of PHP goodness! In this episode, which shall henceforth be referred...
4Vote!
Si Jobling (Free subscription) | 11/11/2009
CakePHP is a great application framework for "developing rapid websites". I've started building quite a few websites with the system and become quite fond of the MVC framework, the native built-in functionality and vast amount of support available. When I came to setup an application on RackSpace Cloud Sites (previously known ...
4Vote!
PHPDeveloper.org (Free subscription) | 11/10/2009
The folks over at Mayflower are running a poll asking you what PHP framework you use the most in your development. Options include CakePHP, CodeIgniter, Prado, Zend Framwork and Symfony. You'll need to get your vote in before November 15th and represent your framework of choice. As of the time of this post, Zend Framework is out in the lead with around 35 percent of the votes with the "I use...
4Vote!
Macronimous Web Design Blog (Free subscription) | 11/10/2009
Another set of developers liked CakePHP and they prefer to stay with this solid web app. CakePHP is one of the most well known frameworks for PHP development. CakePHP considerably decreases development costs and also helps you as developers write very less code. This blog will walk you through the Cake framework and its hot features [...]
4Vote!
The Bakery: Recent Articles Feed (Free subscription) | 11/08/2009
Now FCKEditor is called CKEditor. And here is an running Version of CKEditor and CakePHP. CKEditor is an WYSIWYG Javascript Editor.
3Vote!
The Bakery: Recent Articles Feed (Free subscription) | 11/08/2009
When I first started, I realized that CakePHP didn't have an LDAP data source officially supported yet. I did find two articles about some good attempts. One by euphrate, unfortunately this one was only for reading from ldap. The second one was by Gservat, this one was a bit more complete, but was not really working for me.
3Vote!
The Bakery: Recent Articles Feed (Free subscription) | 11/08/2009
A short introduction to the features of our order and time tracking system, build with CakePHP.
3Vote!
Web Development & Stuff (Free subscription) | 11/08/2009
I’ve been using the containable behavio(u)r in CakePHP along with $recursive = -1 property in my models to cut down on the amount of SQL querying going on. I needed to specify a second level recursion on one of my associated models and managed it by doing this: 12345$this->paginate['Invoice']['contain'] = array( 'Order' => 'OrderedProduct', 'User' ); # [...]
3Vote!
Script & Style (Free subscription) | 11/08/2009
CakePHP is great rapid development php framework. CakePHP allows you to create applications with ease. But in case you CakePHP lover need to create simple sites or applcations, maybe you considering to use one of the CakePHP based CMS than developed yourself from scratch. So, here is list of some CakePHP based Content Management System. If [...]
3Vote!
Web Development & Stuff (Free subscription) | 11/06/2009
If you use the CakePHP Auth component and you need some conditions for users attempting to login, you can set this attribute/property in the Auth object: 1$this->Auth->userScope = array('User.status' => 1); The userScope attribute behaves pretty much like an Active Record find condition definition. So in the above example, only users with a status of 1 (active) can [...]
3Vote!
PHPDeveloper.org (Free subscription) | 11/06/2009
Popular posts from PHPDeveloper.org for the past week: PersonalDemocracy.com: WhiteHouse.gov Goes Drupal Brandon Savage's Blog: Q&A: Answering Some Questions About Object-Oriented Programming Phil Sturgeon's Blog: CodeIgniter "2.0": Rumours, facts and requests Avnet Labs Blog: TDD with Zend Framework The Bakery: Writing an easy to use A/B test helper with CakePHP and jquery Patrick Allaert's...
3Vote!
Web Development & Stuff (Free subscription) | 11/05/2009
Tried to do a schema snapshot of my db today (cake schema generate) to throw in SVN. I’d added an enum column to one of my tables and it threw this error: 1 Notice: Schema generation error: invalid column type enum ( 'flat_fee' , 'per_unit' ) does not exist in DBO in / vhosts / site.com / accounts / cake / libs / model / schema.php on line 475 Enum must be too old-school and crusty these days!!...