11. ErrorException
…/­bootstrap/­compiled.php8259
10. Illuminate\Exception\Handler handleError
…/­bootstrap/­compiled.php8259
9. Illuminate\Encryption\Encrypter updateBlockSize
…/­bootstrap/­compiled.php8250
8. Illuminate\Encryption\Encrypter setCipher
…/­bootstrap/­compiled.php4334
7. Illuminate\Encryption\EncryptionServiceProvider Illuminate\Encryption\{closure}
…/­bootstrap/­compiled.php128
6. Illuminate\Container\Container Illuminate\Container\{closure}
…/­bootstrap/­compiled.php243
5. Illuminate\Container\Container build
…/­bootstrap/­compiled.php214
4. Illuminate\Container\Container make
…/­bootstrap/­compiled.php589
3. Illuminate\Foundation\Application make
…/­bootstrap/­compiled.php366
2. Illuminate\Container\Container offsetGet
…/­bootstrap/­compiled.php670
1. Illuminate\Foundation\Application getStackedClient
…/­bootstrap/­compiled.php663
0. Illuminate\Foundation\Application run
/­usr/­home/­sugsands/­public_html/­sugsands.com/­listings/­index.php75

ErrorException (E_UNKNOWN) ErrorException thrown with message "Function mcrypt_get_iv_size() is deprecated" Stacktrace: #11 ErrorException in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:8259 #10 Illuminate\Exception\Handler:handleError in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:8259 #9 Illuminate\Encryption\Encrypter:updateBlockSize in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:8250 #8 Illuminate\Encryption\Encrypter:setCipher in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:4334 #7 Illuminate\Encryption\EncryptionServiceProvider:Illuminate\Encryption\{closure} in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:128 #6 Illuminate\Container\Container:Illuminate\Container\{closure} in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:243 #5 Illuminate\Container\Container:build in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:214 #4 Illuminate\Container\Container:make in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:589 #3 Illuminate\Foundation\Application:make in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:366 #2 Illuminate\Container\Container:offsetGet in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:670 #1 Illuminate\Foundation\Application:getStackedClient in /usr/home/sugsands/public_html/sugsands.com/listings/olympus/bootstrap/compiled.php:663 #0 Illuminate\Foundation\Application:run in /usr/home/sugsands/public_html/sugsands.com/listings/index.php:75

Function mcrypt_get_iv_size() is deprecated

    public function setMode($mode)
    {
        $this->mode = $mode;
        $this->updateBlockSize();
    }
    protected function updateBlockSize()
    {
        $this->block = mcrypt_get_iv_size($this->cipher, $this->mode);
    }
}
    public function setMode($mode)
    {
        $this->mode = $mode;
        $this->updateBlockSize();
    }
    protected function updateBlockSize()
    {
        $this->block = mcrypt_get_iv_size($this->cipher, $this->mode);
    }
}
    public function setKey($key)
    {
        $this->key = $key;
    }
    public function setCipher($cipher)
    {
        $this->cipher = $cipher;
        $this->updateBlockSize();
    }
    public function setMode($mode)
class EncryptionServiceProvider extends ServiceProvider
{
    public function register()
    {
        $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']);
            }
            return $encrypter;
        $this->bind($abstract, $concrete, true);
    }
    public function share(Closure $closure)
    {
        return function ($container) use($closure) {
            static $object;
            if (is_null($object)) {
                $object = $closure($container);
            }
            return $object;
    protected function missingLeadingSlash($abstract)
    {
        return is_string($abstract) && strpos($abstract, '\\') !== 0;
    }
    public function build($concrete, $parameters = array())
    {
        if ($concrete instanceof Closure) {
            return $concrete($this, $parameters);
        }
        $reflector = new ReflectionClass($concrete);
    {
        $abstract = $this->getAlias($abstract);
        if (isset($this->instances[$abstract])) {
            return $this->instances[$abstract];
        }
        $concrete = $this->getConcrete($abstract);
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete, $parameters);
        } else {
            $object = $this->make($concrete, $parameters);
    }
    public function make($abstract, $parameters = array())
    {
        $abstract = $this->getAlias($abstract);
        if (isset($this->deferredServices[$abstract])) {
            $this->loadDeferredProvider($abstract);
        }
        return parent::make($abstract, $parameters);
    }
    public function bound($abstract)
    }
    public function offsetExists($key)
    {
        return isset($this->bindings[$key]);
    }
    public function offsetGet($key)
    {
        return $this->make($key);
    }
    public function offsetSet($key, $value)
        $response = with($stack = $this->getStackedClient())->handle($request);
        $response->send();
        $stack->terminate($request, $response);
    }
    protected function getStackedClient()
    {
        $sessionReject = $this->bound('session.reject') ? $this['session.reject'] : null;
        $client = (new \Stack\Builder())->push('Illuminate\\Cookie\\Guard', $this['encrypter'])->push('Illuminate\\Cookie\\Queue', $this['cookie'])->push('Illuminate\\Session\\Middleware', $this['session'], $sessionReject);
        $this->mergeCustomMiddlewares($client);
        return $client->resolve($this);
        if ($this->isBooted()) {
            $this->fireAppCallbacks(array($callback));
        }
    }
    public function run(SymfonyRequest $request = null)
    {
        $request = $request ?: $this['request'];
        $response = with($stack = $this->getStackedClient())->handle($request);
        $response->send();
        $stack->terminate($request, $response);
| 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
SERVER_SOFTWARE Apache
REQUEST_URI /listings/323869
PATH /bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin
PWD /usr/home/sugsands/public_html/fcgi-bin
ORIG_SCRIPT_NAME /fcgi-bin/php71_wrapper.sh
ORIG_PATH_TRANSLATED /usr/home/sugsands/public_html/sugsands.com/listings/index.php
ORIG_PATH_INFO /listings/index.php
ORIG_SCRIPT_FILENAME /usr/home/sugsands/public_html/fcgi-bin/php71_wrapper.sh
HTTP_CONNECTION close
SCRIPT_NAME /listings/index.php
QUERY_STRING
REQUEST_METHOD GET
SERVER_PROTOCOL HTTP/1.1
GATEWAY_INTERFACE CGI/1.1
REDIRECT_URL /listings/index.php
REMOTE_PORT 49832
SCRIPT_FILENAME /usr/home/sugsands/public_html/sugsands.com/listings/index.php
SERVER_ADMIN webmaster@sugsands.com
CONTEXT_DOCUMENT_ROOT /usr/home/sugsands/public_html/fcgi-bin/
CONTEXT_PREFIX /fcgi-bin/
REQUEST_SCHEME https
DOCUMENT_ROOT /usr/home/sugsands/public_html/sugsands.com
REMOTE_ADDR 54.81.185.66
REMOTE_HOST 54.81.185.66
SERVER_PORT 443
SERVER_ADDR 216.92.167.92
SERVER_NAME www.sugsands.com
SERVER_SIGNATURE
HTTP_HOST www.sugsands.com
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
SSL_TLS_SNI www.sugsands.com
HTTPS on
UNIQUE_ID ZflaHVFQL28K1-L_-lvRdAAAABU
REDIRECT_STATUS 200
REDIRECT_HANDLER application/x-httpd-php71
REDIRECT_SSL_TLS_SNI www.sugsands.com
REDIRECT_HTTPS on
REDIRECT_UNIQUE_ID ZflaHVFQL28K1-L_-lvRdAAAABU
REDIRECT_REDIRECT_STATUS 200
REDIRECT_REDIRECT_SSL_TLS_SNI www.sugsands.com
REDIRECT_REDIRECT_HTTPS on
REDIRECT_REDIRECT_UNIQUE_ID ZflaHVFQL28K1-L_-lvRdAAAABU
FCGI_ROLE RESPONDER
PHP_SELF /listings/index.php
REQUEST_TIME_FLOAT 1710840349.2259
REQUEST_TIME 1710840349
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler