Receive news by e-mail

#
 

Enter your e-mail in the field below to receive directly the news that appears on this page.

 

topics : related - all Explore

Shopping

Top Product

CakePHP Application Development: Step-by-step introduction to rapid web development using the open-source MVC CakePHP framework

Compare prices

  1. 2. Beginning CakePHP: From Novice to Professional
  2. 3. Practical CakePHP Projects (Practical Projects)

Shopping Categories

  1. 1. Cell Phones
  2. 2. Smartphones
  3. 3. Digital Cameras
  4. 4. Laptop Computers
  5. 5. Processors
  6. 6. Motherboards
  7. 7. LCD Monitors
  8. 8. Graphics Cards
  9. 9. GPS
  10. 10. Digital Camcorders
  11. 11. Printers
  12. 12. Desktop Computers
  13. 13. Sedans
  14. 14. Coupes & Convertibles
  15. 15. 4x4

Wikio Shopping

  1. 1. Automotive
  2. 2. Beauty & Fragrances
  3. 3. Books
  4. 4. Car/Motorbike
  5. 5. CD
  6. 6. Clothing, Accessories & Shoes
  7. 7. Communication
  8. 8. Computers
  9. 9. DVD
  10. 10. Electronics
  11. 11. Flowers & Gifts
  12. 12. Gourmet & Foods
  13. 13. Health & Personal Care
  14. 14. Home & Garden
  15. 15. Hotels
  16. 16. Household Appliances
  17. 17. Jewelry & Watches
  18. 18. Musical Instruments
  19. 19. Sports & Outdoors
  20. 20. Toys & Baby
  21. 21. Video Games

Participate



CakePHP



Sort by : relevance - date - popularity
3Vote!

Cakephp Save with a table where the primary key is not 'id'

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!

How do I handle json data sent as an HTTP Post to a cakephp app?

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!

AMO Changes for 2010

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!

php|architect Podcast: Bake'n'Shake (Ep. 2009-07)

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!

Configuring CakePHP on RackSpace Cloud

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!

ThinkPHP Blog: Which Open Source PHP framework do you use? (Poll)

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!

Frameworks we like: 2. CakePHP and why?

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!

CKEditor 3.x - New FCKEditor Version

Now FCKEditor is called CKEditor. And here is an running Version of CKEditor and CakePHP. CKEditor is an WYSIWYG Javascript Editor.

3Vote!

LDAP data source with full CRUD support

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!

Order and time tracking system

A short introduction to the features of our order and time tracking system, build with CakePHP.

3Vote!

Specify recursion depth with CakePHP containable behavior

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!

5 CakePHP based Content Managament System

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!

CakePHP Auth component conditions/conditional login

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!

Site News: Popular Posts for the Week of 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!

CakePHP schema generate doesn’t like MySQL enum columns

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!!...