Notice (1024): Undefined property: ErrorController::$Authentication in /home/u163613247/domains/lespaluds.fr/public_html/src/Controller/AppController.php on line 64 [CORE/src/Controller/Controller.php, line 319]
Warning (512): Unable to emit headers. Headers sent in file=/home/u163613247/domains/lespaluds.fr/public_html/vendor/cakephp/cakephp/src/Error/Debugger.php line=954 [CORE/src/Http/ResponseEmitter.php, line 71]
Warning (2): Cannot modify header information - headers already sent by (output started at /home/u163613247/domains/lespaluds.fr/public_html/vendor/cakephp/cakephp/src/Error/Debugger.php:954) [CORE/src/Http/ResponseEmitter.php, line 168]
Warning (2): Cannot modify header information - headers already sent by (output started at /home/u163613247/domains/lespaluds.fr/public_html/vendor/cakephp/cakephp/src/Error/Debugger.php:954) [CORE/src/Http/ResponseEmitter.php, line 197]
Error: Missing Controller

Missing Controller 📋

Cake\Http\Exception\MissingControllerException
Toggle Vendor Stack Frames

Error Phpstorm:Controller could not be found.

     * @return void
     */
    protected function missingController(ServerRequest $request): void
    {
        throw new MissingControllerException([
            'class' => $request->getParam('controller'),
            'plugin' => $request->getParam('plugin'),
            'prefix' => $request->getParam('prefix'),
            '_ext' => $request->getParam('_ext'),

In the case you tried to access a plugin controller make sure you added it to your composer file or you use the autoload option for the plugin.

Suggestion Create the class Phpstorm:Controller below in file: src/Controller/Phpstorm:Controller.php

    <?php
    
namespace App\Controller;

    use 
App\Controller\AppController;

    class 
Phpstorm:Controller extends AppController
    
{

    }

If you want to customize this error message, create templates/Error/missing_controller.php