Warning: rename(/var/www/archivos.stuker.com.ar/logs/error.log,/var/www/archivos.stuker.com.ar/logs/error.log.1733280714): Permission denied in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 203
Warning (2) : rename(/var/www/archivos.stuker.com.ar/logs/error.log,/var/www/archivos.stuker.com.ar/logs/error.log.1733280714): Permission denied [in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php, line 203]

Warning: rename(/var/www/archivos.stuker.com.ar/logs/error.log,/var/www/archivos.stuker.com.ar/logs/error.log.1733280714): Permission denied in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 203
Warning (2) : rename(/var/www/archivos.stuker.com.ar/logs/error.log,/var/www/archivos.stuker.com.ar/logs/error.log.1733280714): Permission denied [in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php, line 203]

Warning: rename(/var/www/archivos.stuker.com.ar/logs/error.log,/var/www/archivos.stuker.com.ar/logs/error.log.1733280714) [function.rename]: Permission denied in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 203
Warning (512) : Unable to emit headers. Headers sent in file=/var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Error/Renderer/HtmlErrorRenderer.php line=37 [in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Http/ResponseEmitter.php, line 65]

Warning: rename(/var/www/archivos.stuker.com.ar/logs/error.log,/var/www/archivos.stuker.com.ar/logs/error.log.1733280714) [function.rename]: Permission denied in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 203
Warning (2) : Cannot modify header information - headers already sent by (output started at /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Error/Renderer/HtmlErrorRenderer.php:37) [in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Http/ResponseEmitter.php, line 163]

Warning: rename(/var/www/archivos.stuker.com.ar/logs/error.log,/var/www/archivos.stuker.com.ar/logs/error.log.1733280714) [function.rename]: Permission denied in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Log/Engine/FileLog.php on line 203
Warning (2) : Cannot modify header information - headers already sent by (output started at /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Error/Renderer/HtmlErrorRenderer.php:37) [in /var/www/archivos.stuker.com.ar/vendor/cakephp/cakephp/src/Http/ResponseEmitter.php, line 192]
Error: Missing Controller

Missing Controller 📋

Cake\Http\Exception\MissingControllerException

Error SearchController could not be found.

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 SearchController below in file: src/Controller/SearchController.php

    <?php
    
namespace App\Controller;

    use 
App\Controller\AppController;

    class 
SearchController extends AppController
    
{

    }
CORE/src/Controller/ControllerFactory.php at line 308 (edit)
     * @return \Cake\Http\Exception\MissingControllerException
     */
    protected function missingController(ServerRequest $request): MissingControllerException
    {
        return new MissingControllerException([
            'controller' => $request->getParam('controller'),
            'plugin' => $request->getParam('plugin'),
            'prefix' => $request->getParam('prefix'),
            '_ext' => $request->getParam('_ext'),

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