How to create XML sitemap in Cakephp – Very Simple Method

How to create XML sitemap in cakephp

  In this tutorial, I will share with you a step-by-step process of creating an XML sitemap in Cakephp 3 in detail.    In the custom Cakephp application, we always have to make the sitemaps as per the URLs created either by the controller routes and/or by the manual routing set in the routes.php file.  … Read more

Cakephp 3 Login functionality-Cakephp 3 authorization – Part 2

Let’s see in this post how can we implement Cakephp 3 authorization. As described in previous part 1 -Cakephp 3 Login functionality-Authentication and Authorization-Part 1, Authorization means checking, whether the logged in user is having permission to access certain functionalities in your application. To achieve this we need to assign a unique role to each user … Read more

Cakephp 3 Login functionality-Authentication and Authorization – Part 1

In this post, I am going to share a procedure of creating Cakephp 3 Login functionality in our Cakephp 3 application. The Authentication or Login/Logout system is very common and basic requirement of any web application. So let’s see what would be the steps included while implementing Authentication and Authorization or Cakephp 3 Login functionality. … Read more

Cakephp search with pagination

Cakephp search with pagination Search functionality is one of the very common and must required functionality in any application. Cakephp search functionality is very easy to implement. A very common example is admin pages, where we show the listing of our data, a list of posts, comments, etc. In Cakephp we show this listing using … Read more

Cakephp 3 Forgot Password functionality

CakePHP 3 Forgot Password functionality is one of the most important functionality required in web application. We have to follow certain steps to implement this functionality correctly. Let’s see in this post how we can implement CakePHP 3 Forgot Password functionality. First, let’s see what actually includes in CakePHP 3 forgot password functionality. The scenario, … Read more

Sending email using CakePHP 3

CakePHP 3 send email functionality is having certain steps to follow, for proper setup and working. I found sending email in CakePHP 3 somewhat tricky. So I am always following certain steps in sequence to setup CakePHP 3 send email functionality correctly. NOTE: In order to send emails from CakePHP 3 using your server, you … Read more