7. ErrorException
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php228
6. Illuminate\Exception\Handler handleError
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php228
5. Illuminate\Encryption\Encrypter getIvSize
…/­vendor/­laravel/­framework/­src/­Illuminate/­Encryption/­Encrypter.php57
4. Illuminate\Encryption\Encrypter encrypt
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php118
3. Illuminate\Cookie\Guard encrypt
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Guard.php51
2. Illuminate\Cookie\Guard handle
…/­vendor/­stack/­builder/­src/­Stack/­StackedHttpKernel.php23
1. Stack\StackedHttpKernel handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php606
0. Illuminate\Foundation\Application run
…/­index.php50

ErrorException

Function mcrypt_get_iv_size() is deprecated

	/**
	 * Get the IV size for the cipher.
	 *
	 * @return int
	 */
	protected function getIvSize()
	{
		return mcrypt_get_iv_size($this->cipher, $this->mode);
	}
 
	/**
	 * Get the IV size for the cipher.
	 *
	 * @return int
	 */
	protected function getIvSize()
	{
		return mcrypt_get_iv_size($this->cipher, $this->mode);
	}
 
	 * Encrypt the given value.
	 *
	 * @param  string  $value
	 * @return string
	 */
	public function encrypt($value)
	{
		$iv = mcrypt_create_iv($this->getIvSize(), $this->getRandomizer());
 
		$value = base64_encode($this->padAndMcrypt($value, $iv));
	 * @param  \Symfony\Component\HttpFoundation\Response  $response
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	protected function encrypt(Response $response)
	{
		foreach ($response->headers->getCookies() as $key => $c)
		{
			$encrypted = $this->encrypter->encrypt($c->getValue());
 
			$response->headers->setCookie($this->duplicate($c, $encrypted));
	 * @param  \Symfony\Component\HttpFoundation\Request  $request
	 * @param  int   $type
	 * @param  bool  $catch
	 * @return \Symfony\Component\HttpFoundation\Response
	 */
	public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
	{
		return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
	}
 
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
 
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
 
	 * @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
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
HTTP_ACCEPT */*
CONTENT_LENGTH 0
HTTP_HOST colonus.com
HTTP_REFERER http://colonus.com/php/colonustv/people/752021-stevie-nicks
HTTP_USER_AGENT claudebot
HTTP_X_HTTPS 1
REDIRECT_UNIQUE_ID ZgXjPWDnMO5hovR9JhdqvwAARQY
REDIRECT_SCRIPT_URL /php/colonustv/people/752021-stevie-nicks
REDIRECT_SCRIPT_URI https://colonus.com/php/colonustv/people/752021-stevie-nicks
REDIRECT_USER_ID 4694377
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI colonus.com
REDIRECT_HTTP2 on
REDIRECT_H2PUSH off
REDIRECT_H2_PUSH off
REDIRECT_H2_PUSHED
REDIRECT_H2_PUSHED_ON
REDIRECT_H2_STREAM_ID 3
REDIRECT_H2_STREAM_TAG 3806566-103-3
REDIRECT_STATUS 200
UNIQUE_ID ZgXjPWDnMO5hovR9JhdqvwAARQY
SCRIPT_URL /php/colonustv/people/752021-stevie-nicks
SCRIPT_URI https://colonus.com/php/colonustv/people/752021-stevie-nicks
USER_ID 4694377
HTTPS on
SSL_TLS_SNI colonus.com
HTTP2 on
H2PUSH off
H2_PUSH off
H2_PUSHED
H2_PUSHED_ON
H2_STREAM_ID 3
H2_STREAM_TAG 3806566-103-3
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SERVER_NAME colonus.com
SERVER_ADDR 107.180.58.46
SERVER_PORT 443
REMOTE_ADDR 44.215.110.142
DOCUMENT_ROOT /home/keft62eam9ut/public_html
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /home/keft62eam9ut/public_html
SERVER_ADMIN webmaster@colonus.com
SCRIPT_FILENAME /home/keft62eam9ut/public_html/php/colonustv/index.php
REMOTE_PORT 52768
REDIRECT_URL /php/colonustv/people/752021-stevie-nicks
SERVER_PROTOCOL HTTP/2.0
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /php/colonustv/people/752021-stevie-nicks
SCRIPT_NAME /php/colonustv/index.php
PHP_SELF /php/colonustv/index.php
REQUEST_TIME_FLOAT 1711661885.5755
REQUEST_TIME 1711661885
empty
empty
empty
empty
empty
Key Value
LSPHP_ENABLE_USER_INI on
PATH /usr/local/bin:/usr/bin:/bin
TEMP /tmp
TMP /tmp
TMPDIR /tmp
PWD /
0. Whoops\Handler\PrettyPageHandler