Symfony Exception

LogicException

HTTP 500 Internal Server Error

The Process class relies on proc_open, which is not available on your PHP installation.

Exception

Symfony\Component\Process\Exception\ LogicException

  1.      * @throws LogicException When proc_open is not installed
  2.      */
  3.     public function __construct(array $commandstring $cwd null, array $env null$input null, ?float $timeout 60)
  4.     {
  5.         if (!\function_exists('proc_open')) {
  6.             throw new LogicException('The Process class relies on proc_open, which is not available on your PHP installation.');
  7.         }
  8.         $this->commandline $command;
  9.         $this->cwd $cwd;
  1.      *
  2.      * @throws LogicException When proc_open is not installed
  3.      */
  4.     public static function fromShellCommandline(string $commandstring $cwd null, array $env null$input null, ?float $timeout 60)
  5.     {
  6.         $process = new static([], $cwd$env$input$timeout);
  7.         $process->commandline $command;
  8.         return $process;
  9.     }
  1.     }
  2.     protected function command($command)
  3.     {
  4.         $process = (new \ReflectionClass(Process::class))->hasMethod('fromShellCommandline')
  5.             ? Process::fromShellCommandline($commandbase_path())
  6.             : new Process($commandbase_path());
  7.         $process->run();
  8.         return trim($process->getOutput());
  1.         return $next($report);
  2.     }
  3.     public function hash(): ?string
  4.     {
  5.         return $this->command("git log --pretty=format:'%H' -n 1");
  6.     }
  7.     public function message(): ?string
  8.     {
  9.         return $this->command("git log --pretty=format:'%s' -n 1");
  1. class AddGitInformation
  2. {
  3.     public function handle(Report $report$next)
  4.     {
  5.         $report->group('git', [
  6.             'hash' => $this->hash(),
  7.             'message' => $this->message(),
  8.             'tag' => $this->tag(),
  9.             'remote' => $this->remote(),
  10.             'isDirty' => ! $this->isClean(),
  11.         ]);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             foreach ($solutions as $solution) {
  2.                 $report->addSolution($solution);
  3.             }
  4.         }
  5.         return $next($report);
  6.     }
  7. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Report $report$next)
  2.     {
  3.         $report->group('queries'$this->queryRecorder->getQueries());
  4.         return $next($report);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Report $report$next)
  2.     {
  3.         $report->group('dumps'$this->dumpRecorder->getDumps());
  4.         return $next($report);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Report $report$next)
  2.     {
  3.         $report->group('logs'$this->logRecorder->getLogMessages());
  4.         return $next($report);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             'laravel_locale' => app()->getLocale(),
  2.             'laravel_config_cached' => app()->configurationIsCached(),
  3.             'php_version' => phpversion(),
  4.         ]);
  5.         return $next($report);
  6.     }
  7. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Report $report$next)
  2.     {
  3.         $report->notifierName(static::NOTIFIER_NAME);
  4.         return $next($report);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         $context['request']['ip'] = null;
  2.         $report->userProvidedContext($context);
  3.         return $next($report);
  4.     }
  5. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         foreach ($this->recorder->glows() as $glow) {
  3.             $report->addGlow($glow);
  4.         }
  5.         return $next($report);
  6.     }
  7. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $report = (new Pipeline($this->container))
  2.             ->send($report)
  3.             ->through($this->middleware)
  4.             ->then(function ($report) {
  5.                 return $report;
  6.             });
  7.         return $report;
  8.     }
  9. }
  1.             $throwable,
  2.             $this->contextDetector->detectCurrentContext(),
  3.             $this->applicationPath
  4.         );
  5.         return $this->applyMiddlewareToReport($report);
  6.     }
  7.     public function createReportFromMessage(string $messagestring $logLevel): Report
  8.     {
  9.         $report Report::createForMessage(
  1.         $this->solutionProviderRepository $solutionProviderRepository;
  2.     }
  3.     public function handle(Throwable $throwable$defaultTab null$defaultTabProps = [])
  4.     {
  5.         $report $this->flareClient->createReport($throwable);
  6.         $solutions $this->solutionProviderRepository->getSolutionsForThrowable($throwable);
  7.         $viewModel = new ErrorPageViewModel(
  8.             $throwable,
  1.     }
  2.     public function handle(): ?int
  3.     {
  4.         try {
  5.             $this->errorPageHandler->handle($this->exception);
  6.         } catch (Error $error) {
  7.             // Errors aren't caught by Whoops.
  8.             // Convert the error to an exception and throw again.
  9.             throw new ErrorException(
  1.                 // The HandlerInterface does not require an Exception passed to handle()
  2.                 // and neither of our bundled handlers use it.
  3.                 // However, 3rd party handlers may have already relied on this parameter,
  4.                 // and removing it would be possibly breaking for users.
  5.                 $handlerResponse $handler->handle($exception);
  6.                 // Collect the content type for possible sending in the headers.
  7.                 $handlerContentType method_exists($handler'contentType') ? $handler->contentType() : null;
  8.                 if (in_array($handlerResponse, [Handler::LAST_HANDLERHandler::QUIT])) {
  1.             $whoops->appendHandler($this->whoopsHandler());
  2.             $whoops->writeToOutput(false);
  3.             $whoops->allowQuit(false);
  4.         })->handleException($e);
  5.     }
  6.     /**
  7.      * Get the Whoops handler for the application.
  8.      *
  1.      */
  2.     protected function renderExceptionContent(Throwable $e)
  3.     {
  4.         try {
  5.             return config('app.debug') && class_exists(Whoops::class)
  6.                         ? $this->renderExceptionWithWhoops($e)
  7.                         : $this->renderExceptionWithSymfony($econfig('app.debug'));
  8.         } catch (Exception $e) {
  9.             return $this->renderExceptionWithSymfony($econfig('app.debug'));
  10.         }
  11.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function convertExceptionToResponse(Throwable $e)
  4.     {
  5.         return SymfonyResponse::create(
  6.             $this->renderExceptionContent($e),
  7.             $this->isHttpException($e) ? $e->getStatusCode() : 500,
  8.             $this->isHttpException($e) ? $e->getHeaders() : []
  9.         );
  10.     }
  1.      * @return \Symfony\Component\HttpFoundation\Response
  2.      */
  3.     protected function prepareResponse($requestThrowable $e)
  4.     {
  5.         if (! $this->isHttpException($e) && config('app.debug')) {
  6.             return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e);
  7.         }
  8.         if (! $this->isHttpException($e)) {
  9.             $e = new HttpException(500$e->getMessage());
  10.         }
  1.             return $this->convertValidationExceptionToResponse($e$request);
  2.         }
  3.         return $request->expectsJson()
  4.                     ? $this->prepareJsonResponse($request$e)
  5.                     : $this->prepareResponse($request$e);
  6.     }
  7.     /**
  8.      * Prepare exception for rendering.
  9.      *
Handler->render(object(Request), object(RouteNotFoundException)) in /home/foux6592/public_html/sidatek.borobudurpedia.id/app/Exceptions/Handler.php (line 53)
  1.      *
  2.      * @throws \Throwable
  3.      */
  4.     public function render($requestThrowable $exception)
  5.     {
  6.         return parent::render($request$exception);
  7.     }
  8. }
  1.         $handler $this->container->make(ExceptionHandler::class);
  2.         $handler->report($e);
  3.         $response $handler->render($passable$e);
  4.         if (method_exists($response'withException')) {
  5.             $response->withException($e);
  6.         }
  1.     {
  2.         return function ($passable) use ($destination) {
  3.             try {
  4.                 return $destination($passable);
  5.             } catch (Throwable $e) {
  6.                 return $this->handleException($passable$e);
  7.             }
  8.         };
  9.     }
  10.     /**
  1.     {
  2.         $this->router->substituteBindings($route $request->route());
  3.         $this->router->substituteImplicitBindings($route);
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $session $this->startSession($request)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.         $this->debugbar->boot();
  2.         try {
  3.             /** @var \Illuminate\Http\Response $response */
  4.             $response $next($request);
  5.         } catch (Exception $e) {
  6.             $response $this->handleException($request$e);
  7.         } catch (Error $error) {
  8.             $e = new FatalThrowableError($error);
  9.             $response $this->handleException($request$e);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/foux6592/public_html/sidatek.borobudurpedia.id/index.php (line 55)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

LogicException

Symfony\Component\Process\Exception\LogicException:
The Process class relies on proc_open, which is not available on your PHP installation.

  at /home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/symfony/process/Process.php:143
  at Symfony\Component\Process\Process->__construct(array(), '/home/foux6592/public_html/sidatek.borobudurpedia.id', null, null, 60.0)
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/symfony/process/Process.php:191)
  at Symfony\Component\Process\Process::fromShellCommandline('git log --pretty=format:\'%H\' -n 1', '/home/foux6592/public_html/sidatek.borobudurpedia.id')
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddGitInformation.php:51)
  at Facade\Ignition\Middleware\AddGitInformation->command('git log --pretty=format:\'%H\' -n 1')
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddGitInformation.php:25)
  at Facade\Ignition\Middleware\AddGitInformation->hash()
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddGitInformation.php:13)
  at Facade\Ignition\Middleware\AddGitInformation->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddSolutions.php:28)
  at Facade\Ignition\Middleware\AddSolutions->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddQueries.php:22)
  at Facade\Ignition\Middleware\AddQueries->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddDumps.php:22)
  at Facade\Ignition\Middleware\AddDumps->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddLogs.php:22)
  at Facade\Ignition\Middleware\AddLogs->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/AddEnvironmentInformation.php:20)
  at Facade\Ignition\Middleware\AddEnvironmentInformation->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/Middleware/SetNotifierName.php:15)
  at Facade\Ignition\Middleware\SetNotifierName->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/flare-client-php/src/Middleware/AnonymizeIp.php:17)
  at Facade\FlareClient\Middleware\AnonymizeIp->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/flare-client-php/src/Middleware/AddGlows.php:24)
  at Facade\FlareClient\Middleware\AddGlows->handle(object(Report), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/flare-client-php/src/Flare.php:247)
  at Facade\FlareClient\Flare->applyMiddlewareToReport(object(Report))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/flare-client-php/src/Flare.php:221)
  at Facade\FlareClient\Flare->createReport(object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/ErrorPage/ErrorPageHandler.php:39)
  at Facade\Ignition\ErrorPage\ErrorPageHandler->handle(object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/facade/ignition/src/ErrorPage/IgnitionWhoopsHandler.php:25)
  at Facade\Ignition\ErrorPage\IgnitionWhoopsHandler->handle(object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/filp/whoops/src/Whoops/Run.php:296)
  at Whoops\Run->handleException(object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:363)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionWithWhoops(object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:342)
  at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent(object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:326)
  at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse(object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:305)
  at Illuminate\Foundation\Exceptions\Handler->prepareResponse(object(Request), object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:210)
  at Illuminate\Foundation\Exceptions\Handler->render(object(Request), object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/app/Exceptions/Handler.php:53)
  at App\Exceptions\Handler->render(object(Request), object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php:51)
  at Illuminate\Routing\Pipeline->handleException(object(Request), object(RouteNotFoundException))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:130)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:76)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:56)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:66)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/barryvdh/laravel-debugbar/src/Middleware/InjectDebugbar.php:65)
  at Barryvdh\Debugbar\Middleware\InjectDebugbar->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/foux6592/public_html/sidatek.borobudurpedia.id/index.php:55)