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.php48

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
PATH /usr/local/bin:/bin:/usr/bin
HTTP_ACCEPT */*
HTTP_HOST www.senopatieducationcenter.com
HTTP_USER_AGENT claudebot
DOCUMENT_ROOT /home/senopati/public_html
REMOTE_ADDR 3.238.62.124
REMOTE_PORT 49282
SERVER_ADDR 103.7.226.91
SERVER_NAME www.senopatieducationcenter.com
SERVER_ADMIN webmaster@senopatieducationcenter.com
SERVER_PORT 80
REQUEST_SCHEME http
REQUEST_URI /community/Suryati
REDIRECT_URL /community/Suryati
REDIRECT_REQUEST_METHOD GET
REDIRECT_STATUS 200
SCRIPT_FILENAME /home/senopati/public_html/community/index.php
QUERY_STRING
SCRIPT_URI http://www.senopatieducationcenter.com/community/Suryati
SCRIPT_URL /community/Suryati
SCRIPT_NAME /community/index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
PHP_SELF /community/index.php
REQUEST_TIME_FLOAT 1711640921.7417
REQUEST_TIME 1711640921
empty
empty
empty
empty
empty
Key Value
PATH /usr/local/bin:/bin:/usr/bin
0. Whoops\Handler\PrettyPageHandler