CakePHP 4 policy missing from cake bake command

Written by James McDonald

June 1, 2022

If you try the bin/cake bake policy command and get “Could not find a task named policy.”

bin/cake bake policy
Could not find a task named `policy`.

Make sure CakePHP Authorization is installed and then add the following to src/Application.php

    public function bootstrap(): void
    {
        // Call parent to load bootstrap from files.
        parent::bootstrap();

        // other code here

        // Load more plugins here

     
        $this->addPlugin('Authorization');
    }

Try again and you are good to go

bin/cake bake policy
# output
You must provide a name to bake a policy


bin/cake bake policy DebugKitAuthBypass      

#output
Creating file C:\dev\cake-auth\src\Policy\DebugKitAuthBypassPolicy.php
Wrote `C:\dev\cake-auth\src\Policy\DebugKitAuthBypassPolicy.php`

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...

Ubuntu on Hyper-v

It boils town to installing linux-azure # as root or sudo apt-get update apt-get install linux-azure...