CakePHP 3.x Tutorial for Beginners

CakePHP is an open source PHP 5.4+ framework, helps to building both small and complex systems. It follows the Model-View-Controller (MVC) approach. CakePHP makes building web applications simpler, faster and require less code.
CakePHP has released 3.x versions with many changes. This tutorial will guide you for getting started with CakePHP 3.x framework and provide basic guide of CakePHP 3.x application development. Our step by step CakePHP 3.x tutorial helps beginner for learn CakePHP 3.x from scratch. Also we will develop a sample project with CakePHP 3.x for your better understanding.

Download CakePHP 3.x:

Download the pre-installed release of CakePHP 3.x from Github – CakePHP Releases

Basic Configuration:

Step1:- Before installing CakePHP we are needed to check some configuration in our server.

  •  Make sure that you have the mbstring and intl extensions are enabled in PHP.
  •  Make sure that you have pdo_mysql enabled in PHP.

Step2:- Extract zip file and change folder name with your desire project name. For example cakephp/.

Step3:- Move the cakephp/ folder to the localhost server. Your directory setup would look like the following.

  • /cakephp
    • /bin
    • /config
    • /logs
    • /plugins
    • /src
    • /tests
    • /tmp
    • /vendor
    • /webroot
    • .editorconfig
    • .htaccess
    • .travis.yml
    • composer.json
    • index.php
    • phpunit.xml.dist
    • README.md

Step4:- Directory Permissions – The tmp and logs directories need to have write permissions. So, make these directories to be writable.

Step5:- Creating Database – Create a database at the phpMyAdmin. For example cakephp_db.

Step6:- Database Configuration:
 Open the config/app.php file and replace the values in the Datasources.default array with database details. The completed configuration array might be look like the following.

  • 'Datasources' => [
            
    'default' => [
                
    'className' => 'Cake\Database\Connection',
                
    'driver' => 'Cake\Database\Driver\Mysql',
                
    'persistent' => false,
                
    'host' => 'localhost',
                
    'username' => 'root',
                
    'password' => '',
                
    'database' => 'cakephp_db',
                
    'encoding' => 'utf8',
                
    'timezone' => 'UTC',
                
    'cacheMetadata' => true,
                
    'quoteIdentifiers' => false,
            ],
    ]

Step7:- Run the application URL (http://localhost/cakephp/) at the browser, screen would look like the below.

cakephp-installation-configuration-tutorial-by-codexworld

CakePHP 3.x Naming Conventions:

Before start to building a sample project, we should know about the Naming Conventions of CakePHP 3.x.

Controller Conventions – Controller class names are plural, CamelCased, and end in Controller (PostsController, LatestPostsController etc.).

Model and Database Conventions – Model class names are plural, CamelCased, and end in Table (PostsTable). Database Table names corresponding to CakePHP models are plural and underscored (posts).

View Conventions – The basic pattern of view template file is src/Template/Controller/underscored_function_name.ctp (src/Template/Posts/index.ctp).

Sample Application with CakePHP 3.x:

We are going to build a sample application using CakePHP 3.x. This sample application will fetch some posts from database and display those posts data and display those posts data at the browser.

Create a posts table:

CREATE TABLE `posts` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
 `description` text COLLATE utf8_unicode_ci NOT NULL,
 `created` datetime NOT NULL,
 `modified` datetime NOT NULL,
 `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1 = Active, 0 = Inactive',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

Insert some posts data for testing purpose:

INSERT INTO 
    `cakephp_db`.`posts` (`id`, `title`, `description`, `created`, `modified`, `status`) 
VALUES 
    (NULL, 'Distance between two addresses using Google Maps API and PHP', 'Calculate distance between two addresses........', NOW(), NOW(), '1'), 
    (NULL, 'Ajax Pagination in CodeIgniter Framework', 'CodeIgniter have the pagination library by........', NOW(), NOW(), '1'), 
    (NULL, 'Create a custom WordPress Plugin from scratch', 'WordPress is the most popular open source content management.......', NOW(), NOW(), '1'), 
    (NULL, 'Drag and drop reorder images using jQuery, Ajax, PHP & MySQL', 'Today we will discuss about the most useful........', NOW(), NOW(), '1'), 
    (NULL, 'Drupal 7 installation and setup tutorial for beginners', 'Drupal is a content management system which allows........', NOW(), NOW(), '1');

Creating Posts Controller:
We’ll create a controller with the class name PostsController and place this new controller in a file called PostsController.php inside the src/Controller directory. Here’s what the Posts Controller is look like:

<?php
// src/Controller/PostsController.php

namespace App\Controller;

class 
PostsController extends AppController
{
    public function 
index()
    {
        
$posts $this->Posts->find('all');
        
$this->set(compact('posts'));
    }
}

find() function is used for retrieve all the posts data. set() function is used to pass the posts data to view.

Creating Posts Model:
We don’t need to create model for retrieve data from post table.

Creating Posts Views:
CakePHP’s template files are stored into the src/Template directory. Into this directory we’ll have to create a folder named “posts” and create a index.ctp file. Our view code would be look like the below:

<h1>Blog Posts</h1>
<div class="row">
    <?php if(!empty($posts)): foreach($posts as $post): ?>
    <div class="post-box">
        <div class="post-content">
            <div class="caption">
                <h4><a href="javascript:void(0);"><?php echo $post->title; ?></a></h4>
                <p><?php echo $post->description; ?></p>
            </div>
        </div>
    </div>
    <?php endforeach; else: ?>
    <p class="no-record">No post(s) found......</p>
    <?php endif; ?>
</div>

Set Default Controller:
Open the config/routes.php file and set application base controller. Go to under the Router::scope() and into the $routes->connect() change controller name from “Pages” to “Posts”, action name from “display” to “index” and pass a param to select the view file to use.

$routes->connect('/', ['controller' => 'Posts''action' => 'index''index']);

Testing:

Refresh the page (http://localhost/cakephp/) at the browser, you can see screen like the below.

cakephp-blog-posts-tutorial-by-codexworld

If you want to styling the post boxes like the above screenshot, just add the following CSS to the src/Template/Posts/index.ctp view.

h1{color: #494646;}
.row{ margin:20px 20px 20px 20px;width: 100%;}
.post-box {width: 30%;float: left;position: relative;min-height: 1px;padding-right: 15px;padding-left: 15px;}
.post-content {padding: 0;}
.post-content {display: block;padding: 4px;margin-bottom: 20px;line-height: 1.42857143;background-color: #fff;border: 1px solid #ddd;border-radius: 4px;-webkit-transition: all .2s ease-in-out;transition: all .2s ease-in-out;}
.post-content .caption {padding: 9px;color: #333;}
.post-content .caption p{font-size: 14px;}
.post-content h4 {font-size: 18px;margin-top: 10px;margin-bottom: 10px;}
.post-content a {color: #428bca;text-decoration: none;background: transparent;}
.post-content p {margin: 0 0 10px;}
.no-record{font-size: 16px;font-weight: bold;color: #DD4B39;padding: 10px}

 That’s all, we has completed the basic setup of CakePHP 3.x application. We’ll be discuss about add, edit, delete functionalities at our next tutorial.

Do you want to get implementation help, or enhance the functionality of this script? Click here to Submit Service Request

27 Comments

  1. Mohit Said...
  2. Monali Said...
  3. Vanita Said...
  4. PC Nayak Said...
  5. Praveen Said...
  6. Pankaj Said...
  7. Rishi Said...
  8. SHOEB Said...
  9. Sanchez Said...
  10. Sandeep Said...
  11. GHULAM MOHIYUDDN Said...
  12. Bhawana Parashar Said...
  13. Sourab Said...
  14. Loum Said...
  15. Pankaj Sharma Said...
  16. Anjali Said...
  17. Alex Wyller Said...
  18. Yasmin Said...
  19. Ashish Bafna Said...
    • CodexWorld Said...
  20. Elias Said...
  21. Elias Said...
    • CodexWorld Said...
  22. Rejaul Said...
    • CodexWorld Said...

Leave a reply

keyboard_double_arrow_up