cakefoundation.org
Donate :: Cake Software Foundation
http://cakefoundation.org/donate
Follow us on Twitter. The Non-Profit Organisation Behind The CakePHP Open Source Project. The Cake Software Foundation. Could not exist without the continued generous support from the community. Join developers from around the world, and help keep CakePHP. We accept donations via PayPal. For secure online transactions. Simply click the button below to make a donation of the amount of your choosing. This requires an account on http:/ my.cakephp.org. Alternatively, you can make an anonymous donation. Train...
es.cakefest.org
Attendees :: CakeFest - The annual CakePHP conference
http://es.cakefest.org/speakers
Follow us on Twitter. Speakers for this year's event will be announced soon. Days left to CakeFest 2017. Get Ready for CakeFest. We're really looking forward to seeing you at the conference this year. In the meantime, while we're heating up the oven, check out the community center. Good- ness across the Internet. Promises to be an exciting learning and networking event for all. Don't miss out! If your company or employer uses CakePHP. Please see our sponsorship prospectus.
caky.de
CakePHP Conventions — CakePHP Cookbook v2.x documentation
http://caky.de/en/getting-started/cakephp-conventions.html
URL Considerations for Controller Names. File and Classname Conventions. Model and Database Conventions. We are big fans of convention over configuration. While it takes a bit of time to learn CakePHP’s conventions, you save time in the long run: by following convention, you get free functionality, and you free yourself from the maintenance nightmare of tracking config files. Convention also makes for a very uniform system development, allowing other developers to jump in and help more easily. You can al...
caky.de
Getting Started — CakePHP Cookbook v2.x documentation
http://caky.de/en/getting-started.html
Creating the Blog Database. A Note on mod rewrite. Blog Tutorial - Adding a layer. Create a Post Model. Create a Posts Controller. The CakePHP framework provides a robust base for your application. It can handle every aspect, from the user’s initial request all the way to the final rendering of a web page. And since the framework follows the principles of MVC, it allows you to easily customize and extend most aspects of your application. Here’s what you’ll need:. A running web server. We’re goi...A datab...
caky.de
Models — CakePHP Cookbook v2.x documentation
http://caky.de/en/models.html
Models are the classes that sit as the business layer in your application. This means that they should be responsible for managing almost everything that happens regarding your data, its validity, interactions and evolution of the information workflow in your domain of work. A model can be associated with other models. For example, a Recipe may be associated with the Author of the recipe as well as the Ingredient in the recipe. A Model represents your data model. In object-oriented programming a data...
caky.de
CakePHP Overview — CakePHP Cookbook v2.x documentation
http://caky.de/en/cakephp-overview.html
Welcome to the Cookbook, the manual for the CakePHP web application framework that makes developing a piece of cake! This manual assumes that you have a general understanding of PHP and a basic understanding of object-oriented programming (OOP). Different functionality within the framework makes use of different technologies such as SQL, JavaScript, and XML and this manual does not attempt to explain those technologies, only how they are used in context. Where to Get Help. Blog Tutorial - Adding a layer.
caky.de
Deployment — CakePHP Cookbook v2.x documentation
http://caky.de/en/deployment.html
Multiple CakePHP applications using the same core. Once your application is complete, or even before that you’ll want to deploy it. There are a few things you should do when deploying a CakePHP application. If you’re throwing your application out into the wild, it’s a good idea to make sure it doesn’t have any leaks. Check the. To guard against CSRF attacks, form field tampering, and others. Doing. Is also a great idea, for protecting your database and also against XSS attacks. Check that only your.