17. RuntimeException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­EncryptionServiceProvider.php29
16. Illuminate\Encryption\EncryptionServiceProvider Illuminate\Encryption\{closure}
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php734
15. Illuminate\Container\Container build
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php627
14. Illuminate\Container\Container make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php674
13. Illuminate\Foundation\Application make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php838
12. Illuminate\Container\Container resolveClass
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php801
11. Illuminate\Container\Container getDependencies
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php772
10. Illuminate\Container\Container build
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php627
9. Illuminate\Container\Container make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php674
8. Illuminate\Foundation\Application make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Pipeline/­Pipeline.php123
7. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Http/­Middleware/­CheckForMaintenanceMode.php41
6. Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode handle
<#unknown>0
5. call_user_func_array
…/­vendor/­laravel/­framework/­src/­Illuminate/­Pipeline/­Pipeline.php124
4. Illuminate\Pipeline\Pipeline Illuminate\Pipeline\{closure}
<#unknown>0
3. call_user_func
…/­vendor/­laravel/­framework/­src/­Illuminate/­Pipeline/­Pipeline.php103
2. Illuminate\Pipeline\Pipeline then
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Http/­Kernel.php122
1. Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Http/­Kernel.php87
0. Illuminate\Foundation\Http\Kernel handle
…/­www/­index.php54

RuntimeException

Callstack information; navigate with mouse or keyboard using Ctrl+↑ or Ctrl+↓
Copy-to-clipboard button
Exception message and its type
Code snippet where the error was thrown
Server state information
Application provided context information
RuntimeException thrown with message "No supported encrypter found. The cipher and / or key length are invalid." Stacktrace: #17 RuntimeException in /home/brgs/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:29 #16 Illuminate\Encryption\EncryptionServiceProvider:Illuminate\Encryption\{closure} in /home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php:734 #15 Illuminate\Container\Container:build in /home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php:627 #14 Illuminate\Container\Container:make in /home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:674 #13 Illuminate\Foundation\Application:make in /home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php:838 #12 Illuminate\Container\Container:resolveClass in /home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php:801 #11 Illuminate\Container\Container:getDependencies in /home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php:772 #10 Illuminate\Container\Container:build in /home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php:627 #9 Illuminate\Container\Container:make in /home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:674 #8 Illuminate\Foundation\Application:make in /home/brgs/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:123 #7 Illuminate\Pipeline\Pipeline:Illuminate\Pipeline\{closure} in /home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:41 #6 Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode:handle in <#unknown>:0 #5 call_user_func_array in /home/brgs/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:124 #4 Illuminate\Pipeline\Pipeline:Illuminate\Pipeline\{closure} in <#unknown>:0 #3 call_user_func in /home/brgs/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103 #2 Illuminate\Pipeline\Pipeline:then in /home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:122 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:87 #0 Illuminate\Foundation\Http\Kernel:handle in /home/brgs/www/index.php:54

No supported encrypter found. The cipher and / or key length are invalid.

/home/brgs/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php
            $cipher = $config['cipher'];
 
            if (Encrypter::supported($key, $cipher)) {
                return new Encrypter($key, $cipher);
            } elseif (McryptEncrypter::supported($key, $cipher)) {
                return new McryptEncrypter($key, $cipher);
            } else {
                throw new RuntimeException('No supported encrypter found. The cipher and / or key length are invalid.');
            }
        });
/home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php
     */
    public function build($concrete, array $parameters = [])
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $parameters);
        }
 
/home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php
 
        $concrete = $this->getConcrete($abstract);
 
        // We're ready to instantiate an instance of the concrete type registered for
        // the binding. This will instantiate the types, as well as resolve any of
        // its "nested" dependencies recursively until all have gotten resolved.
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete, $parameters);
        } else {
            $object = $this->make($concrete, $parameters);
/home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        $abstract = $this->getAlias($abstract);
 
        if (isset($this->deferredServices[$abstract])) {
            $this->loadDeferredProvider($abstract);
        }
 
        return parent::make($abstract, $parameters);
    }
 
/home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    protected function resolveClass(ReflectionParameter $parameter)
    {
        try {
            return $this->make($parameter->getClass()->name);
        }
 
/home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php
            // primitive type which we can not resolve since it is not a class and
            // we will just bomb out with an error since we have no-where to go.
            if (array_key_exists($parameter->name, $primitives)) {
                $dependencies[] = $primitives[$parameter->name];
            } elseif (is_null($dependency)) {
                $dependencies[] = $this->resolveNonClass($parameter);
            } else {
                $dependencies[] = $this->resolveClass($parameter);
            }
        }
/home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php
        // new instance of this class, injecting the created dependencies in.
        $parameters = $this->keyParametersByArgument(
            $dependencies, $parameters
        );
 
        $instances = $this->getDependencies(
            $dependencies, $parameters
        );
 
        array_pop($this->buildStack);
/home/brgs/vendor/laravel/framework/src/Illuminate/Container/Container.php
 
        $concrete = $this->getConcrete($abstract);
 
        // We're ready to instantiate an instance of the concrete type registered for
        // the binding. This will instantiate the types, as well as resolve any of
        // its "nested" dependencies recursively until all have gotten resolved.
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete, $parameters);
        } else {
            $object = $this->make($concrete, $parameters);
/home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        $abstract = $this->getAlias($abstract);
 
        if (isset($this->deferredServices[$abstract])) {
            $this->loadDeferredProvider($abstract);
        }
 
        return parent::make($abstract, $parameters);
    }
 
/home/brgs/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
                // otherwise we'll resolve the pipes out of the container and call it with
                // the appropriate method and arguments, returning the results back out.
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } else {
                    list($name, $parameters) = $this->parsePipeString($pipe);
 
                    return call_user_func_array([$this->container->make($name), $this->method],
                                                array_merge([$passable, $stack], $parameters));
                }
/home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if ($this->app->isDownForMaintenance()) {
            throw new HttpException(503);
        }
        return $next($request);
    }
}
<#unknown>
/home/brgs/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
                // the appropriate method and arguments, returning the results back out.
                if ($pipe instanceof Closure) {
                    return call_user_func($pipe, $passable, $stack);
                } else {
                    list($name, $parameters) = $this->parsePipeString($pipe);
 
                    return call_user_func_array([$this->container->make($name), $this->method],
                                                array_merge([$passable, $stack], $parameters));
                }
            };
<#unknown>
/home/brgs/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php
    {
        $firstSlice = $this->getInitialSlice($destination);
 
        $pipes = array_reverse($this->pipes);
 
        return call_user_func(
            array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable
        );
    }
 
/home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
/home/brgs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Exception $e) {
            $this->reportException($e);
/home/brgs/www/index.php
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
empty
empty
empty
empty
empty
Key Value
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
USER brgs
HOME /home/brgs
FCGI_ROLE RESPONDER
REDIRECT_UNIQUE_ID ZgZUG9Brv_fGjhkkCSluugAAAA4
REDIRECT_HTTP_AUTHORIZATION
REDIRECT_SCRIPT_URL /adm
REDIRECT_SCRIPT_URI http://www.brgs.com.br/adm
REDIRECT_STATUS 200
UNIQUE_ID ZgZUG9Brv_fGjhkkCSluugAAAA4
HTTP_AUTHORIZATION
SCRIPT_URL /adm
SCRIPT_URI http://www.brgs.com.br/adm
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_HOST www.brgs.com.br
HTTP_MAX_FORWARDS 10
LD_LIBRARY_PATH /usr/local/apache2/lib
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME www.brgs.com.br
SERVER_ADDR 191.6.208.36
SERVER_PORT 80
REMOTE_ADDR 54.242.22.247
DOCUMENT_ROOT /home/brgs/www/
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/brgs/www/
SERVER_ADMIN brgs@brgs.com.br
SCRIPT_FILENAME //home/brgs/www/index.php
REMOTE_PORT 59568
REDIRECT_URL /adm
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /adm
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711690779.85
REQUEST_TIME 1711690779
argv Array ( )
argc 0
APP_ENV production
APP_DEBUG false
APP_KEY BcFwfIo7AEr1qC6xcNcydndJC2ikTD1i
DB_HOST mysql.brgs.com.br
DB_DATABASE brgs
DB_USERNAME brgs
DB_PASSWORD engenharia2016
CACHE_DRIVER file
SESSION_DRIVER file
QUEUE_DRIVER sync
MAIL_DRIVER smtp
MAIL_HOST smtp.gmail.com
MAIL_PORT 587
MAIL_USERNAME brgscontato@gmail.com
MAIL_PASSWORD brgs010213
MAIL_ENCRYPTION tls
Key Value
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
USER brgs
HOME /home/brgs
FCGI_ROLE RESPONDER
REDIRECT_UNIQUE_ID ZgZUG9Brv_fGjhkkCSluugAAAA4
REDIRECT_HTTP_AUTHORIZATION
REDIRECT_SCRIPT_URL /adm
REDIRECT_SCRIPT_URI http://www.brgs.com.br/adm
REDIRECT_STATUS 200
UNIQUE_ID ZgZUG9Brv_fGjhkkCSluugAAAA4
HTTP_AUTHORIZATION
SCRIPT_URL /adm
SCRIPT_URI http://www.brgs.com.br/adm
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_HOST www.brgs.com.br
HTTP_MAX_FORWARDS 10
LD_LIBRARY_PATH /usr/local/apache2/lib
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME www.brgs.com.br
SERVER_ADDR 191.6.208.36
SERVER_PORT 80
REMOTE_ADDR 54.242.22.247
DOCUMENT_ROOT /home/brgs/www/
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/brgs/www/
SERVER_ADMIN brgs@brgs.com.br
SCRIPT_FILENAME //home/brgs/www/index.php
REMOTE_PORT 59568
REDIRECT_URL /adm
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /adm
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711690779.85
REQUEST_TIME 1711690779
argv Array ( )
argc 0
APP_ENV production
APP_DEBUG false
APP_KEY BcFwfIo7AEr1qC6xcNcydndJC2ikTD1i
DB_HOST mysql.brgs.com.br
DB_DATABASE brgs
DB_USERNAME brgs
DB_PASSWORD engenharia2016
CACHE_DRIVER file
SESSION_DRIVER file
QUEUE_DRIVER sync
MAIL_DRIVER smtp
MAIL_HOST smtp.gmail.com
MAIL_PORT 587
MAIL_USERNAME brgscontato@gmail.com
MAIL_PASSWORD brgs010213
MAIL_ENCRYPTION tls
0. Whoops\Handler\PrettyPageHandler