19. ErrorException
…/­vendor/­simplepie/­simplepie/­library/­SimplePie/­Cache/­File.php127
18. Illuminate\View\Engines\CompilerEngine handleViewException
…/­vendor/­laravel/­framework/­src/­Illuminate/­View/­Engines/­PhpEngine.php41
17. Illuminate\View\Engines\PhpEngine evaluatePath
…/­vendor/­laravel/­framework/­src/­Illuminate/­View/­Engines/­CompilerEngine.php56
16. Illuminate\View\Engines\CompilerEngine get
…/­vendor/­laravel/­framework/­src/­Illuminate/­View/­View.php134
15. Illuminate\View\View getContents
…/­vendor/­laravel/­framework/­src/­Illuminate/­View/­View.php102
14. Illuminate\View\View renderContents
…/­vendor/­laravel/­framework/­src/­Illuminate/­View/­View.php76
13. Illuminate\View\View render
…/­vendor/­laravel/­framework/­src/­Illuminate/­Http/­Response.php70
12. Illuminate\Http\Response setContent
…/­vendor/­symfony/­http-foundation/­Symfony/­Component/­HttpFoundation/­Response.php202
11. Symfony\Component\HttpFoundation\Response __construct
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1427
10. Illuminate\Routing\Router prepareResponse
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php1003
9. Illuminate\Routing\Router dispatchToRoute
…/­vendor/­laravel/­framework/­src/­Illuminate/­Routing/­Router.php968
8. Illuminate\Routing\Router dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php738
7. Illuminate\Foundation\Application dispatch
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­Application.php708
6. Illuminate\Foundation\Application handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Http/­FrameGuard.php38
5. Illuminate\Http\FrameGuard handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Session/­Middleware.php72
4. Illuminate\Session\Middleware handle
…/­vendor/­laravel/­framework/­src/­Illuminate/­Cookie/­Queue.php47
3. Illuminate\Cookie\Queue handle
…/­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.php49

ErrorException

unserialize(): Error at offset 204799 of 255531 bytes (View: /home/projesbr/public_html/app/views/newsfeed/_newsfeed.blade.php) (View: /home/projesbr/public_html/app/views/newsfeed/_newsfeed.blade.php)

  1. *
  2. * @return array Data for SimplePie::$data
  3. */
  4. public function load()
  5. {
  6. if (file_exists($this->name) && is_readable($this->name))
  7. {
  8. return unserialize(file_get_contents($this->name));
  9. }
  10. return false;
  1. // an exception is thrown. This prevents any partial views from leaking.
  2. try
  3. {
  4. include $__path;
  5. }
  6. catch (\Exception $e)
  7. {
  8. $this->handleViewException($e);
  9. }
  1. }
  2. $compiled = $this->compiler->getCompiledPath($path);
  3. // Once we have the path to the compiled file, we will evaluate the paths with
  4. // typical PHP just like any other templates. We also keep a stack of views
  5. // which have been rendered for right exception messages to be generated.
  6. $results = $this->evaluatePath($compiled, $data);
  7. array_pop($this->lastCompiled);
  1. /**
  2. * Get the evaluated contents of the view.
  3. *
  4. * @return string
  5. */
  6. protected function getContents()
  7. {
  8. return $this->engine->get($this->path, $this->gatherData());
  9. }
  1. // We will keep track of the amount of views being rendered so we can flush
  2. // the section after the complete rendering operation is done. This will
  3. // clear out the sections for any separate views that may be rendered.
  4. $this->environment->incrementRender();
  5. $this->environment->callComposer($this);
  6. $contents = $this->getContents();
  7. // Once we've finished rendering the view, we'll decrement the render count
  1. * Get the string contents of the view.
  2. *
  3. * @param \Closure $callback
  4. * @return string
  5. */
  6. public function render(Closure $callback = null)
  7. {
  8. $contents = $this->renderContents();
  9. $response = isset($callback) ? $callback($this, $contents) : null;
  1. }
  2. // If this content implements the "RenderableInterface", then we will call the
  3. // render method on the object so we will avoid any "__toString" exceptions
  4. // that might be thrown and have their errors obscured by PHP's handling.
  5. elseif ($content instanceof RenderableInterface)
  6. {
  7. $content = $content->render();
  8. }
  1. * @throws \InvalidArgumentException When the HTTP status code is not valid
  2. *
  3. * @api
  4. */
  5. public function __construct($content = '', $status = 200, $headers = array())
  6. {
  7. $this->headers = new ResponseHeaderBag($headers);
  8. $this->setContent($content);
  9. $this->setStatusCode($status);
  10. $this->setProtocolVersion('1.0');
  1. * @param mixed $response
  2. * @return \Illuminate\Http\Response
  3. */
  4. protected function prepareResponse($request, $response)
  5. {
  6. if ( ! $response instanceof SymfonyResponse)
  7. {
  8. $response = new Response($response);
  9. }
  1. $response = $this->callRouteBefore($route, $request);
  2. if (is_null($response))
  3. {
  4. $response = $route->run($request);
  5. }
  6. $response = $this->prepareResponse($request, $response);
  7. // After we have a prepared response from the route or filter we will call to
  1. // If no response was returned from the before filter, we will call the proper
  2. // route instance to get the response. If no route is found a response will
  3. // still get returned based on why no routes were found for this request.
  4. $response = $this->callFilter('before', $request);
  5. if (is_null($response))
  6. {
  7. $response = $this->dispatchToRoute($request);
  8. }
  1. }
  2. if ($this->runningUnitTests() && ! $this['session']->isStarted())
  3. {
  4. $this['session']->start();
  5. }
  6. return $this['router']->dispatch($this->prepareRequest($request));
  7. }
  1. {
  2. try
  3. {
  4. $this->refreshRequest($request = Request::createFromBase($request));
  5. $this->boot();
  6. return $this->dispatch($request);
  7. }
  8. catch (\Exception $e)
  1. * @param \Symfony\Component\HttpFoundation\Request $request
  2. * @param int $type
  3. * @param bool $catch
  4. * @return \Symfony\Component\HttpFoundation\Response
  5. */
  6. public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
  7. {
  8. $response = $this->app->handle($request, $type, $catch);
  9. $response->headers->set('X-Frame-Options', 'SAMEORIGIN', false);
  1. if ($this->sessionConfigured())
  2. {
  3. $session = $this->startSession($request);
  4. $request->setSession($session);
  5. }
  6. $response = $this->app->handle($request, $type, $catch);
  7. // Again, if the session has been configured we will need to close out the session
  1. * @param \Symfony\Component\HttpFoundation\Request $request
  2. * @param int $type
  3. * @param bool $catch
  4. * @return \Symfony\Component\HttpFoundation\Response
  5. */
  6. public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
  7. {
  8. $response = $this->app->handle($request, $type, $catch);
  9. foreach ($this->cookies->getQueuedCookies() as $cookie)
  1. * @param \Symfony\Component\HttpFoundation\Request $request
  2. * @param int $type
  3. * @param bool $catch
  4. * @return \Symfony\Component\HttpFoundation\Response
  5. */
  6. public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
  7. {
  8. return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
  9. }
  1. {
  2. $this->app = $app;
  3. $this->middlewares = $middlewares;
  4. }
  5. public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
  6. {
  7. return $this->app->handle($request, $type, $catch);
  8. }
  1. * @param \Symfony\Component\HttpFoundation\Request $request
  2. * @return void
  3. */
  4. public function run(SymfonyRequest $request = null)
  5. {
  6. $request = $request ?: $this['request'];
  7. $response = with($stack = $this->getStackedClient())->handle($request);
  8. $response->send();
  1. | Once we have the application, we can simply call the run method,
  2. | which will execute the request and send the response back to
  3. | the client's browser allowing them to enjoy the creative
  4. | and wonderful application we have whipped up for them.
  5. |
  6. */
  7. $app->run();
Key Value
PATH /usr/local/bin:/bin:/usr/bin
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
HTTP_ACCEPT_ENCODING gzip, deflate, br, zstd
HTTP_HOST projesom.com
HTTP_PRAGMA no-cache
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_CACHE_CONTROL no-cache
HTTP_SEC_CH_UA "HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"
HTTP_SEC_CH_UA_MOBILE ?0
HTTP_SEC_CH_UA_PLATFORM "Windows"
HTTP_UPGRADE_INSECURE_REQUESTS 1
HTTP_SEC_FETCH_SITE none
HTTP_SEC_FETCH_MODE navigate
HTTP_SEC_FETCH_USER ?1
HTTP_SEC_FETCH_DEST document
HTTP_PRIORITY u=0, i
HTTP_X_HTTPS 1
DOCUMENT_ROOT /home/projesbr/public_html
REMOTE_ADDR 52.14.200.7
REMOTE_PORT 21228
SERVER_ADDR 128.201.72.202
SERVER_NAME projesom.com
SERVER_ADMIN webmaster@projesomvideo.com.br
SERVER_PORT 443
REQUEST_SCHEME https
REQUEST_URI /en/newsfeed-en
REDIRECT_URL /en/newsfeed-en
REDIRECT_REQUEST_METHOD GET
HTTPS on
REDIRECT_STATUS 200
X_SPDY HTTP2
SSL_PROTOCOL TLSv1.3
SSL_CIPHER TLS_AES_128_GCM_SHA256
SSL_CIPHER_USEKEYSIZE 128
SSL_CIPHER_ALGKEYSIZE 128
SCRIPT_FILENAME /home/projesbr/public_html/index.php
QUERY_STRING
SCRIPT_URI https://projesom.com/en/newsfeed-en
SCRIPT_URL /en/newsfeed-en
SCRIPT_NAME /index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
X-LSCACHE on
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1743868420.86
REQUEST_TIME 1743868420
argv Array ( )
argc 0
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler