11. ErrorException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php307
10. Illuminate\Exception\Handler handleError
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php307
9. Illuminate\Encryption\Encrypter updateBlockSize
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php284
8. Illuminate\Encryption\Encrypter setCipher
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­EncryptionServiceProvider.php20
7. Illuminate\Encryption\EncryptionServiceProvider Illuminate\Encryption\{closure}
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php268
6. Illuminate\Container\Container Illuminate\Container\{closure}
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php725
5. Illuminate\Container\Container build
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php633
4. Illuminate\Container\Container make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php470
3. Illuminate\Foundation\Application make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php1062
2. Illuminate\Container\Container offsetGet
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php680
1. Illuminate\Foundation\Application getStackedClient
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php663
0. Illuminate\Foundation\Application run
…/­public/­index.php49

ErrorException (E_UNKNOWN) ErrorException thrown with message "Function mcrypt_get_iv_size() is deprecated" Stacktrace: #11 ErrorException in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:307 #10 Illuminate\Exception\Handler:handleError in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:307 #9 Illuminate\Encryption\Encrypter:updateBlockSize in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:284 #8 Illuminate\Encryption\Encrypter:setCipher in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:20 #7 Illuminate\Encryption\EncryptionServiceProvider:Illuminate\Encryption\{closure} in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Container/Container.php:268 #6 Illuminate\Container\Container:Illuminate\Container\{closure} in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Container/Container.php:725 #5 Illuminate\Container\Container:build in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Container/Container.php:633 #4 Illuminate\Container\Container:make in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:470 #3 Illuminate\Foundation\Application:make in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Container/Container.php:1062 #2 Illuminate\Container\Container:offsetGet in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:680 #1 Illuminate\Foundation\Application:getStackedClient in /home/kaiseragro/public_html/arearestrita/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:663 #0 Illuminate\Foundation\Application:run in /home/kaiseragro/public_html/arearestrita/public/index.php:49

Function mcrypt_get_iv_size() is deprecated

	/**
	 * Update the block size for the current cipher and mode.
	 *
	 * @return void
	 */
	protected function updateBlockSize()
	{
		$this->block = mcrypt_get_iv_size($this->cipher, $this->mode);
	}
 
	/**
	 * Update the block size for the current cipher and mode.
	 *
	 * @return void
	 */
	protected function updateBlockSize()
	{
		$this->block = mcrypt_get_iv_size($this->cipher, $this->mode);
	}
 
	 * @param  string  $cipher
	 * @return void
	 */
	public function setCipher($cipher)
	{
		$this->cipher = $cipher;
 
		$this->updateBlockSize();
	}
 
	{
		$this->app->bindShared('encrypter', function($app)
		{
			$encrypter =  new Encrypter($app['config']['app.key']);

			if ($app['config']->has('app.cipher'))
			{
				$encrypter->setCipher($app['config']['app.cipher']);
			}

			// We'll simply declare a static variable within the Closures and if it has
			// not been set we will execute the given Closures to resolve this value
			// and return it back to these consumers of the method as an instance.
			static $object;
 
			if (is_null($object))
			{
				$object = $closure($container);
			}
 
	public function build($concrete, $parameters = array())
	{
		// 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);
		}
 
		$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
		$abstract = $this->getAlias($abstract);
 
		if (isset($this->deferredServices[$abstract]))
		{
			$this->loadDeferredProvider($abstract);
		}
 
		return parent::make($abstract, $parameters);
	}
 
	 * Get the value at a given offset.
	 *
	 * @param  string  $key
	 * @return mixed
	 */
	public function offsetGet($key)
	{
		return $this->make($key);
	}
 
	 * @return  \Symfony\Component\HttpKernel\HttpKernelInterface
	 */
	protected function getStackedClient()
	{
		$sessionReject = $this->bound('session.reject') ? $this['session.reject'] : null;
 
		$client = (new Builder)
                    ->push('Illuminate\Cookie\Guard', $this['encrypter'])
                    ->push('Illuminate\Cookie\Queue', $this['cookie'])
                    ->push('Illuminate\Session\Middleware', $this['session'], $sessionReject);
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @return void
	 */
	public function run(SymfonyRequest $request = null)
	{
		$request = $request ?: $this['request'];
 
		$response = with($stack = $this->getStackedClient())->handle($request);
 
		$response->send();
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have whipped up for them.
|
*/
 
$app->run();
 
Key Value
CONTEXT_DOCUMENT_ROOT /home/kaiseragro/public_html
CONTEXT_PREFIX
DOCUMENT_ROOT /home/kaiseragro/public_html
GATEWAY_INTERFACE CGI/1.1
HTTPS on
HTTP_ACCEPT */*
HTTP_HOST kaiseragro.com.br
HTTP_USER_AGENT claudebot
HTTP_X_HTTPS 1
PATH /bin:/usr/bin
PATH_INFO /login
PATH_TRANSLATED /home/kaiseragro/public_html/arearestrita/public/index.php
QUERY_STRING
REDIRECT_STATUS 200
REMOTE_ADDR 52.90.50.252
REMOTE_PORT 56756
REQUEST_METHOD GET
REQUEST_SCHEME https
REQUEST_URI /arearestrita/public/index.php/login
SCRIPT_FILENAME /home/kaiseragro/public_html/arearestrita/public/index.php
SCRIPT_NAME /arearestrita/public/index.php
SCRIPT_URI https://kaiseragro.com.br/arearestrita/public/index.php/login
SCRIPT_URL /arearestrita/public/index.php/login
SERVER_ADDR 45.224.130.43
SERVER_ADMIN webmaster@kaiseragro.com.br
SERVER_NAME kaiseragro.com.br
SERVER_PORT 443
SERVER_PROTOCOL HTTP/1.1
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SSL_TLS_SNI kaiseragro.com.br
TZ America/Sao_Paulo
UNIQUE_ID ZgX_a-o3qyLvwv42IJESWQAAAAU
PHP_SELF /arearestrita/public/index.php/login
REQUEST_TIME_FLOAT 1711669099.2855
REQUEST_TIME 1711669099
argv Array ( )
argc 0
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler