11. ErrorException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php305
10. Illuminate\Exception\Handler handleError
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php305
9. Illuminate\Encryption\Encrypter updateBlockSize
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php282
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.php214
6. Illuminate\Container\Container Illuminate\Container\{closure}
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php501
5. Illuminate\Container\Container build
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php428
4. Illuminate\Container\Container make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php462
3. Illuminate\Foundation\Application make
…/­vendor/­laravel/­framework/­src/­Illuminate/­Container/­Container.php806
2. Illuminate\Container\Container offsetGet
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php658
1. Illuminate\Foundation\Application getStackedClient
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php641
0. Illuminate\Foundation\Application run
…/­public_html/­index.php49

ErrorException (E_UNKNOWN) ErrorException thrown with message "Function mcrypt_get_iv_size() is deprecated" Stacktrace: #11 ErrorException in /home/chirino/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:305 #10 Illuminate\Exception\Handler:handleError in /home/chirino/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:305 #9 Illuminate\Encryption\Encrypter:updateBlockSize in /home/chirino/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php:282 #8 Illuminate\Encryption\Encrypter:setCipher in /home/chirino/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:20 #7 Illuminate\Encryption\EncryptionServiceProvider:Illuminate\Encryption\{closure} in /home/chirino/vendor/laravel/framework/src/Illuminate/Container/Container.php:214 #6 Illuminate\Container\Container:Illuminate\Container\{closure} in /home/chirino/vendor/laravel/framework/src/Illuminate/Container/Container.php:501 #5 Illuminate\Container\Container:build in /home/chirino/vendor/laravel/framework/src/Illuminate/Container/Container.php:428 #4 Illuminate\Container\Container:make in /home/chirino/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:462 #3 Illuminate\Foundation\Application:make in /home/chirino/vendor/laravel/framework/src/Illuminate/Container/Container.php:806 #2 Illuminate\Container\Container:offsetGet in /home/chirino/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:658 #1 Illuminate\Foundation\Application:getStackedClient in /home/chirino/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:641 #0 Illuminate\Foundation\Application:run in /home/chirino/public_html/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
USER chirino
HOME /home/chirino
SCRIPT_NAME /index.php
REQUEST_URI /14/Quinn_%C3%80_Dos_Squad_Ordinateur_Toile_Nouveau_Harley_Suicide_%C3%89cole_Sac_QdtrxCsh/lande-pppib/
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /14/Quinn_À_Dos_Squad_Ordinateur_Toile_Nouveau_Harley_Suicide_École_Sac_QdtrxCsh/lande-pppib/
REMOTE_PORT 50802
SCRIPT_FILENAME /home/chirino/public_html/index.php
SERVER_ADMIN webmaster@chirinoregistradoras.com
CONTEXT_DOCUMENT_ROOT /home/chirino/public_html
CONTEXT_PREFIX
REQUEST_SCHEME http
DOCUMENT_ROOT /home/chirino/public_html
REMOTE_ADDR 3.236.18.23
SERVER_PORT 80
SERVER_ADDR 185.140.32.20
SERVER_NAME chirinoregistradoras.com
SERVER_SOFTWARE Apache
SERVER_SIGNATURE
PATH /usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin
HTTP_HOST chirinoregistradoras.com
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
proxy-nokeepalive 1
SCRIPT_URI http://chirinoregistradoras.com/14/Quinn_À_Dos_Squad_Ordinateur_Toile_Nouveau_Harley_Suicide_École_Sac_QdtrxCsh/lande-pppib/
SCRIPT_URL /14/Quinn_À_Dos_Squad_Ordinateur_Toile_Nouveau_Harley_Suicide_École_Sac_QdtrxCsh/lande-pppib/
UNIQUE_ID Zfk5__5jeeRkOFHNvK_OoQAAACM
REDIRECT_STATUS 200
REDIRECT_SCRIPT_URI http://chirinoregistradoras.com/14/Quinn_À_Dos_Squad_Ordinateur_Toile_Nouveau_Harley_Suicide_École_Sac_QdtrxCsh/lande-pppib/
REDIRECT_SCRIPT_URL /14/Quinn_À_Dos_Squad_Ordinateur_Toile_Nouveau_Harley_Suicide_École_Sac_QdtrxCsh/lande-pppib/
REDIRECT_UNIQUE_ID Zfk5__5jeeRkOFHNvK_OoQAAACM
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1710832127.0126
REQUEST_TIME 1710832127
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler