Symfony Exception

Exception

HTTP 500 Internal Server Error

Webinar with apiId 263 not found

Exception

Exception

  1.     public static function webinarItem(Request $request// apiId aka WebinarEvents::webinar("import_params")
  2.     {
  3.         $apiId $request->get('apiId') ?? 0;
  4.         $item Webinars::getByApiId($apiId)->first();
  5.         if (!$item) {
  6.             throw new \Exception(sprintf('Webinar with apiId %s not found'$apiId));
  7.         }
  8.         $fractal = new Manager();
  9.         $transformer = new WebinarTransformer();
  10.         $item $fractal->createData(new FractalCollection([$item], $transformer))->toArray();
  1.      * @param  array  $parameters
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function callAction($method$parameters)
  5.     {
  6.         return $this->{$method}(...array_values($parameters));
  7.     }
  8.     /**
  9.      * Handle calls to missing methods on the controller.
  10.      *
  1.     public function dispatch(Route $route$controller$method)
  2.     {
  3.         $parameters $this->resolveParameters($route$controller$method);
  4.         if (method_exists($controller'callAction')) {
  5.             return $controller->callAction($method$parameters);
  6.         }
  7.         return $controller->{$method}(...array_values($parameters));
  8.     }
  1.      *
  2.      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
  3.      */
  4.     protected function runController()
  5.     {
  6.         return $this->controllerDispatcher()->dispatch(
  7.             $this$this->getController(), $this->getControllerMethod()
  8.         );
  9.     }
  10.     /**
  1.     {
  2.         $this->container $this->container ?: new Container;
  3.         try {
  4.             if ($this->isControllerAction()) {
  5.                 return $this->runController();
  6.             }
  7.             return $this->runCallable();
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  1.         return (new Pipeline($this->container))
  2.                         ->send($request)
  3.                         ->through($middleware)
  4.                         ->then(fn ($request) => $this->prepareResponse(
  5.                             $request$route->run()
  6.                         ));
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  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.             }
  2.             throw $exception;
  3.         }
  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.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  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 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.     public function handle(Request $requestClosure $next): Response
  3.     {
  4.         if (app()->environment('production')) {
  5.             if (app()->has('calledFromWeblication')) {
  6.                 return $next($request);
  7.             }
  8.             abort(403);
  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.         $middleware $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
  2.         return (new Pipeline($this->container))
  3.                         ->send($request)
  4.                         ->through($middleware)
  5.                         ->then(fn ($request) => $this->prepareResponse(
  6.                             $request$route->run()
  7.                         ));
  8.     }
  9.     /**
  1.         $request->setRouteResolver(fn () => $route);
  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.      */
  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.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  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.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  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.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass 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.      * @return \Illuminate\Http\Response
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (! $this->hasMatchingPath($request)) {
  6.             return $next($request);
  7.         }
  8.         $this->cors->setOptions($this->container['config']->get('cors', []));
  9.         if ($this->cors->isPreflightRequest($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.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  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.         $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.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
  1.             $_SERVER['REQUEST_URI'] = $originalRequestUri;
  2.             $_GET json_decode(static::$originalGETtrue);
  3.             /** @var \Illuminate\Http\Response $response */
  4.             $response = static::$kernel->handle($request);
  5.             if (!isset($_COOKIE['laravel_session'])) {
  6.                 collect(\Illuminate\Support\Arr::get($response->headers->all(), 'set-cookie', []))
  7.                     ->each(function($cookie) {
  8.                         $cookie urldecode($cookie);
  1.                 $method['callbackBeforeRouting']($url$params);
  2.             }
  3.             $returnData \Illuminate\Support\Arr::get($method'returnData'false);
  4.             $content \WeblicationConnector::call($url$params$returnData);
  5.             if ($returnData) {
  6.                 return $content;
  7.             }
  1. $_7783d2 .= $_c48491."\n"; } if(!empty($_0fae0c)){ gFilehandler::_e73643($_59c05b$_7783d2.$_79f64d); } } return $_79f64d; } catch(gException $_b8d4ad){
  2. unset($_b8d4ad); return ''; } } } public static function ntps($_8bfb71){ return self::_abb443($_8bfb71); } public static function _abb443($_8bfb71$_28e220 true){
  3. $_e7e9d6 error_reporting(); if(isset($GLOBALS['wDebugPHP']) && is_array($GLOBALS['wDebugPHP'])){ if(isset($GLOBALS['wDebugPHP']['error_reporting'])){ error_reporting($GLOBALS['wDebugPHP']['error_reporting']); } } else if(isset($_GET['debugPHP']) && $_GET['debugPHP'] == '1' && gSession::_c12fd0() == 'admin'){ $GLOBALS['wDebugPhpErrorInfoID'] = isset($GLOBALS['wDebugPhpErrorInfoID']) ? $GLOBALS['wDebugPhpErrorInfoID'] + 10$GLOBALS['wDebugPhpErrorInfoIdCurrent'] = 'eidth_'.$GLOBALS['wDebugPhpErrorInfoID'];
  4. $GLOBALS['wDebugPhpErrorInfoIdBefore'] = 'eidth_'.($GLOBALS['wDebugPhpErrorInfoID'] - 1); gFilehandler::_e73643($_SERVER['DOCUMENT_ROOT'].'/weblication/grid5/tmp/debug-php.xml'$_8bfb71); error_reporting(E_ALL); } if(isset($GLOBALS['dgbape']) && $GLOBALS['dgbape']){ error_reporting(E_ALL); } if(isset($GLOBALS['useIncludes']) && $GLOBALS['useIncludes'] || !empty($_GET['useIncludes'])){ $_8bfb71 = ($_28e220 === false '<'.'?php '.$_8bfb71.'?'.'>' $_8bfb71);
  5. ob_start(); $_800cb1 $_SERVER['DOCUMENT_ROOT'].'/weblication/grid5/tmp/wPHP-inc-'.md5($_8bfb71).'.php'; if(!file_exists($_800cb1)){ gFilehandler::_e73643($_800cb1$_8bfb71); } @include($_800cb1); $_79f64d ob_get_contents(); ob_end_clean(); }
  6. else{ $_8bfb71 = ($_28e220 === false $_8bfb71 '?'.'>'.$_8bfb71.'<'.'?php '); ob_start(); eval($_8bfb71); $_79f64d ob_get_contents(); ob_end_clean(); } if(isset($GLOBALS['wDebugPHP']) && is_array($GLOBALS['wDebugPHP'])){ if(isset($GLOBALS['wDebugPHP']['error_reporting'])){
  7. error_reporting($_e7e9d6); } if(isset($GLOBALS['wDebugPHP']['show']) && $GLOBALS['wDebugPHP']['show']){ if(preg_match('/(deprecated<\/|notice<\/|fatal\s+error|syntax\s+error|warning<\/)/i'$_79f64d)){ print "PHPSTR1:\n".$_8bfb71."\n\n\n\n"; print "RESULTSTR\n".$_79f64d."\n\n\n\n"; if(isset($GLOBALS['wDebugPHP']['exit']) && $GLOBALS['wDebugPHP']['exit']){ exit; }
  8. } } else if(isset($GLOBALS['wDebugPHP']['exit']) && $GLOBALS['wDebugPHP']['exit']){ exit; } } else if((isset($_GET['debugPHP']) && $_GET['debugPHP'] == '1' && gSession::_c12fd0() == 'admin') && preg_match('/(deprecated<\/|notice<\/|fatal\s+error|syntax\s+error|warning<\/)/i'$_79f64d)){ if(isset($_GET['debugPHPExit']) && $_GET['debugPHPExit'] == '1'){ print "PHPSTR2:\n".$_8bfb71."\n\n\n\n";
  9. print $_79f64d; exit; } else{ print $_79f64d; if(!empty($GLOBALS['hideDebugPHPMask'])){ print "PHPSTR\n".$_8bfb71."\n\n\n\n"; } }
  10. } return $_79f64d; } public static function _dd0c68($_8bfb71){ eval($_8bfb71); } public static function _d4a14a($prefix 'wsl'){ if(empty(self::$_24ab8e[$prefix])){ $_5ed2bc $_SERVER['DOCUMENT_ROOT'].'/weblication/grid5/lib/xslt/wsl/'.$prefix.'.xsl';
  11. self::$_24ab8e[$prefix] = str_replace('$XSLTPRE[wDocumentRoot]'$_SERVER['DOCUMENT_ROOT'], gFilehandler::_2b0180($_5ed2bc)); } return self::$_24ab8e[$prefix]; } }
  1. *
  2. */
  3. //*********************************************************************************/
  4. ?>
  5. <?php class gWslProcessor extends gClassBasicCoreStandard { private static $_24ab8e = array(); public static $_5786af = array(); public static function _4f8228($_fe18a8$_dc6bf2 null){ return self::_abb443(self::_b7c3c6($_fe18a8$_dc6bf2)); } public static function _e695c6($_fe18a8$_dc6bf2 null){ $_486722 self::_10f029($_fe18a8$_dc6bf2);
  6. $_089b17 self::_abb443($_486722); return $_089b17; } public static function _efb1f6($_fe18a8$prefix 'wsl'$_dc6bf2 = array()){ $_dc6bf2['prefix'] = $prefix$_79f64d self::_b7c3c6($_fe18a8$_dc6bf2); return self::_abb443($_79f64d); } public static function _0a3b84($_fe18a8$prefix 'wsl'$_dc6bf2 = array()){
  7. $_dc6bf2['prefix'] = $prefix$_79f64d self::_b7c3c6($_fe18a8$_dc6bf2); return self::_abb443($_79f64d); } static function _b7c3c6($_fe18a8$_dc6bf2 = array()){ $_dc6bf2['wslAccelerator'] = isset($GLOBALS['wslAccelerator']) ? $GLOBALS['wslAccelerator'] : ''$_dc6bf2 array_merge(array('wObjectType' => '''wPath' => '''wContextPath' => '''wProjectPath' => '''wProjectName' => '''wProjectGlobalPath' => '''wProjectAssetsPath' => '''wProjectLocalAssetsPath' => '''wDirType' => '''wSource' => '''wDir' => '''prefix' => '''isInEditor' => ''), $_dc6bf2); $_fe18a8 str_replace('$WSLPRE[wUserLanguage]',      gSession::_cbd31f(), $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wUserName]',          gSession::_d0c584(), $_fe18a8);
  8. $_fe18a8 str_replace('$WSLPRE[wSystemMajorRelease]',     gApplicationEnv::getVersion(), $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wObjectType]',        $_dc6bf2['wObjectType'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wPath]',              $_dc6bf2['wPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wContextPath]',       $_dc6bf2['wContextPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectPath]',       $_dc6bf2['wProjectPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectName]',       $_dc6bf2['wProjectName'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectGlobalPath]'$_dc6bf2['wProjectGlobalPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectAssetsPath]'$_dc6bf2['wProjectAssetsPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectLayoutPath]'$_dc6bf2['wProjectLayoutPath'] ?? $_dc6bf2['wProjectGlobalPath'], $_fe18a8);
  9. $_fe18a8 str_replace('$WSLPRE[wProjectLocalAssetsPath]'$_dc6bf2['wProjectLocalAssetsPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wDirType]',           $_dc6bf2['wDirType'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wSource]',            $_dc6bf2['wSource'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[gAndLt]',             "<" $_fe18a8); $_fe18a8 str_replace('$WSLPRE[gAndGt]',             ">" $_fe18a8); if($_dc6bf2['prefix'] == 'wslPre'){ $_fe18a8 str_replace("\$XMLPRE[wIsInEditor]"$_dc6bf2['isInEditor'], $_fe18a8); } $_baf63d self::_d4a14a(empty($_dc6bf2['prefix']) ? 'wsl' $_dc6bf2['prefix']);
  10. $parameters $_dc6bf2$parameters['wIsInEditor'] = $_dc6bf2['isInEditor'] == 1  0$_79f64d gXsltProcessor::_2dd454($_fe18a8$_baf63d$parameters); $_79f64d str_replace('<!--div-->'''$_79f64d); $_79f64d str_replace('\'$'.'forEachInnerScope\'''$'.'forEachInnerScope'$_79f64d); return $_79f64d; } static function _10f029($_fe18a8$_dc6bf2 = array()){ $_dc6bf2['wslAccelerator'] = isset($GLOBALS['wslAccelerator']) ? $GLOBALS['wslAccelerator'] : '';
  11. $_dc6bf2 array_merge(array('wObjectType' => '''wPath' => '''wContextPath' => '''wProjectPath' => '''wProjectName' => '''wProjectGlobalPath' => '''wProjectAssetsPath' => '''wProjectLocalAssetsPath' => '''wDirType' => '''wSource' => '''wDir' => '''prefix' => '''isInEditor' => ''), $_dc6bf2); $_fe18a8 str_replace('$WSLPRE[wUserLanguage]',      gSession::_cbd31f(), $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wUserName]',          gSession::_d0c584(), $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wObjectType]',        $_dc6bf2['wObjectType'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wPath]',              $_dc6bf2['wPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wContextPath]',       $_dc6bf2['wContextPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectPath]',       $_dc6bf2['wProjectPath'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectName]',       $_dc6bf2['wProjectName'], $_fe18a8); $_fe18a8 str_replace('$WSLPRE[wProjectGlobalPath]'$_dc6bf2['wProjectGlobalPath'], $_fe18a8);
  1. ?>
  2. <?php class gProcessorPage extends gClassBasicCoreStandard { public static function _a380f4($_fe18a8$_baf63d$parameters = array(), $_dc6bf2 = array()){ if(!$_dc6bf2){ $_dc6bf2 = array(); } $_3fe8b7 = isset($_dc6bf2['processFlow']) ? $_dc6bf2['processFlow'] : array(); $_3fe8b7[] = array('xslt'''); $_3fe8b7[] = array('wsl''wsl');
  3. if(gSession::_c12fd0() != 'admin'){ if(empty($GLOBALS['wHideWslPhpSecurityAlert'])){ $_fe18a8 str_replace('<wsl:php''<wsl:wSecurityAlert'$_fe18a8); $_fe18a8 str_replace('</wsl:php''</wsl:wSecurityAlert'$_fe18a8); } } $GLOBALS['wslAccelerator'] = isset($_dc6bf2['wslAccelerator']) ? $_dc6bf2['wslAccelerator'] : ''$GLOBALS['phpAccelerator'] = isset($_dc6bf2['phpAccelerator']) ? $_dc6bf2['phpAccelerator'] : ''$GLOBALS['wTemplateEditPath'] = isset($_dc6bf2['wTemplateEditPath']) ? $_dc6bf2['wTemplateEditPath'] : '';
  4. if(!(strpos($_baf63d'<wslPre:') === false) || !empty($_dc6bf2['wslPre'])){ $_da0c7b = array(); $GLOBALS['xmlStrPre'] = $_fe18a8; if(preg_match('/<wd:object[^>]+type="([^"]+)">/'$_fe18a8$_da0c7b)){ $_dc6bf2['wObjectType'] = $_da0c7b[1]; } $_baf63d str_replace('$'.'WSLPRE[wProjectLayoutPath]', isset($parameters['wProjectLayoutPath']) ? $parameters['wProjectLayoutPath'] : ''$_baf63d); $_baf63d gWslProcessor::_efb1f6($_baf63d'wslPre'$_dc6bf2); }
  5. $_a2a620 $_fe18a8; for($_218992 0$_218992 count($_3fe8b7); $_218992++){ $prefix $_3fe8b7[$_218992][1]; if($_3fe8b7[$_218992][0] == 'wsl'){ if(!isset($_dc6bf2['isInEditor'])){ $_a2a620 gEditor::_2482df($_a2a620); } if(!empty($_dc6bf2['envelop'])){ $_a2a620 gWslProcessor::_efb1f6('<wRoot>'.gStringconverter::removePrologXml($_a2a620).'</wRoot>'$prefix$_dc6bf2);
  6. $_a2a620 str_replace(array('-->'.'WMERGECOMMENT''WMERGECOMMENT<!--'), array(''''), $_a2a620); $_a2a620 str_replace(array('<wRoot>''</wRoot>'), ''$_a2a620); } else{ $_a2a620 gWslProcessor::_efb1f6($_a2a620$prefix$_dc6bf2); $_a2a620 str_replace(array('-->'.'WMERGECOMMENT''WMERGECOMMENT<!--'), array(''''), $_a2a620); } } else if($_3fe8b7[$_218992][0] == 'xslt'){
  7. try{ $_a2a620 gXsltProcessorPage8::_2dd454($_a2a620$_baf63d$parameters$_dc6bf2); $_a2a620 str_replace(array('xmlns_W_''wEditorPreTmpPhpStart''wEditorPreTmpPhpStop'), array('xmlns:''-->'.'WMERGECOMMENT<wsl:php xmlns:wsl="http://weblication.de/5.0/wsl">''</wsl:php>WMERGECOMMENT'.'<!--'), $_a2a620); } catch(gException $_b8d4ad){ $_b0291e 'flow(xslt):'.$_b8d4ad->getMessage(); throw new gException($_b0291e); } }
  8. } if(!(strpos($_a2a620'<wd:includeCssRessources />') === false)){ $_119873 $GLOBALS['wPageCur']['ressourcesCssAttributes']; $_119873['execute'] = 'wsl'$_b90647 wsl_includeCssRessources::parseTag($_119873); $_a2a620 str_replace('<wd:includeCssRessources />'$_b90647$_a2a620); } if(!(strpos($_a2a620'<wd:includeJsRessources />') === false)){ $_5c8fce $GLOBALS['wPageCur']['ressourcesJsAttributes'];
  9. $_5c8fce['execute'] = 'wsl'$_27dca3 wsl_includeJsRessources::parseTag($_5c8fce); $_a2a620 str_replace('<wd:includeJsRessources />'$_27dca3$_a2a620); } $_7583bf gApplicationEnv::_958cbe(); if(gSession::_c12fd0() != ''){ $_a2a620 preg_replace("/(<body[^>]*)>/i""$1 data-wv=\"".$_7583bf."\">"$_a2a6201); } if(!(strpos($_baf63d'<wslPost:') === false)){
  10. $_a2a620 gWslProcessor::_efb1f6($_a2a620'wslPost'$_dc6bf2); } else{ $_a2a620 str_replace(' cdata-section="yes"'''$_a2a620); } $_a2a620 str_replace(array('<wRoot>''</wRoot>'), ''$_a2a620); if(!empty($GLOBALS['wTmp']['wInterpreteCSS']) && $GLOBALS['wTmp']['wInterpreteCSS']){ $_a2a620 self::_671188($_a2a620); }
  11. return $_a2a620; } public static function _671188($_a2a620){ $_da0c7b = array(); $_627213 = array(); try{ if(!empty($GLOBALS['wTmp']['pathServerSideWCSS'])){ $_627213 unserialize(substr(gFilehandler::_2b0180($_SERVER['DOCUMENT_ROOT'].$GLOBALS['wTmp']['pathServerSideWCSS']), 14)); }
  1.   
  2.   $wPageStr '';
  3.   
  4.     try{
  5.     $pageStr  gXsltProcessor::_92c875($pageStr);
  6.     $wPageStr gProcessorPage::_a380f4($pageStr$templateStr$parameters$options);
  7.     $wPageStr str_replace(' xmlns=""'''$wPageStr);
  8.     $wPageStr str_replace('[wToDeleteBeforeOutput]'''$wPageStr);
  9.     }
  10.     catch(gException $e){
  11.     unset($e);
  1.         $templateViewStr = preg_replace('/wPlaceholderPre:\w+/', isset($preVarsIntern['placeholdersXsltPre']['*']) ? $preVarsIntern['placeholdersXsltPre']['*'] : '', $templateViewStr);
  2.       }
  3.       */
  4.       
  5.       //Eigentliche Transformation der Seite
  6.       $pageStr      wOutput::processPageStr($documentStr$templateViewStr, array('wProjectLayoutPath' => $pathLayout), array('wslAccelerator' => $preVarsIntern['wslAccelerator'], 'disablePhpExecution' => $preVarsIntern['disablePhpExecution']));
  7.       
  8.       if(isset($GLOBALS['wGlobalValues']['doNotDisplayPage']) && $GLOBALS['wGlobalValues']['doNotDisplayPage'] == '404'){
  9.         $preStrHeader "Status: 404"."\n";
  10.         header('HTTP/1.1 404 Not Found');
  11.         header('Status: 404 Not Found');
include('/var/www/knx.org/weblication/weblication/grid5/default/project/wGlobal/scripts/pre.php') in /var/www/knx.org/weblication/wGlobal/wGlobal/scripts/pre.php (line 185)
  1.   }
  2.   require_once $_SERVER['LARAVEL_PATH'] . '/vendor/navigateag/laravel-weblication-connector/src/WeblicationConnector.php';
  3.   
  4.   // Hier wird das globale Steuerungsskript eingebunden
  5.   include($_SERVER['DOCUMENT_ROOT'].'/weblication/grid5/default/project/wGlobal/scripts/pre.php');
  6.   $preResult wMyProject::executeRewriteRules($preResult);
  7.   //$preResult = wOutput::filterLinksOffline($preResult, array('displayOffline' => true));
  8.   //$preResult = wOutput::maskEmails($preResult);
  9.   //$preResult = wOutput::sendFormularsOverHTTPS($preResult);
include_once('/var/www/knx.org/weblication/wGlobal/wGlobal/scripts/pre.php') in /var/www/knx.org/weblication/knx-es/para-profesionales/webinars/KNX-System-understand-telegrams-recorded-by-ETS/index.php (line 2)
  1. <?php $version="1.0"$encoding="UTF-8"?>
  2. <?php include_once($_SERVER['DOCUMENT_ROOT'].'/wGlobal/wGlobal/scripts/pre.php'); ?>
  3. <?php exit; ?>
  4. <wd:document xmlns:wsl="http://weblication.de/5.0/wsl" xmlns:wd="http://weblication.de/5.0/wd" version="1.0" type="page.standard">
  5.     <wd:extension type="weblication" version="5.0" uid="cbe638b10b6892fb7a9d5652bd06888b">
  6.         <wd:meta>
  7.             <wd:title>KNX System: understand telegrams recorded by ETS</wd:title>

Stack Trace

Exception
Exception:
Webinar with apiId 263 not found

  at /var/www/knx.org/laravel/app/Http/Controllers/Knx/WebinarsController.php:140
  at App\Http\Controllers\Knx\WebinarsController::webinarItem()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54)
  at Illuminate\Routing\Controller->callAction()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43)
  at Illuminate\Routing\ControllerDispatcher->dispatch()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Route.php:259)
  at Illuminate\Routing\Route->runController()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Route.php:205)
  at Illuminate\Routing\Route->run()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Router.php:806)
  at Illuminate\Routing\Router->Illuminate\Routing\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:50)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/navigateag/laravel-weblication-connector/src/Middleware/WeblicationMiddleware.php:20)
  at NavigateAG\LaravelWeblicationConnector\Middleware\WeblicationMiddleware->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Router.php:805)
  at Illuminate\Routing\Router->runRouteWithinStack()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Router.php:784)
  at Illuminate\Routing\Router->runRoute()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Router.php:748)
  at Illuminate\Routing\Router->dispatchToRoute()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Routing/Router.php:737)
  at Illuminate\Routing\Router->dispatch()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:200)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:144)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:99)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php:49)
  at Illuminate\Http\Middleware\HandleCors->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/var/www/knx.org/laravel/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/var/www/knx.org/laravel/vendor/navigateag/laravel-weblication-connector/src/WeblicationConnector.php:50)
  at WeblicationConnector::call()
     (/var/www/knx.org/laravel/vendor/navigateag/laravel-weblication-connector/src/WeblicationFacade.php:30)
  at NavigateAG\LaravelWeblicationConnector\WeblicationFacade::__callStatic()
     (/var/www/knx.org/weblication/weblication/grid5/lib/php/gWslProcessor.php(48) : eval()'d code:673)
  at eval()
     (/var/www/knx.org/weblication/weblication/grid5/lib/php/gWslProcessor.php:48)
  at gWslProcessor::_abb443()
     (/var/www/knx.org/weblication/weblication/grid5/lib/php/gWslProcessor.php:16)
  at gWslProcessor::_efb1f6()
     (/var/www/knx.org/weblication/weblication/grid5/lib/php/gProcessorPage.php:19)
  at gProcessorPage::_a380f4()
     (/var/www/knx.org/weblication/weblication/grid5/framework/php/wOutput.php:54)
  at wOutput::processPageStr()
     (/var/www/knx.org/weblication/weblication/grid5/default/project/wGlobal/scripts/pre.php:1180)
  at include('/var/www/knx.org/weblication/weblication/grid5/default/project/wGlobal/scripts/pre.php')
     (/var/www/knx.org/weblication/wGlobal/wGlobal/scripts/pre.php:185)
  at include_once('/var/www/knx.org/weblication/wGlobal/wGlobal/scripts/pre.php')
     (/var/www/knx.org/weblication/knx-es/para-profesionales/webinars/KNX-System-understand-telegrams-recorded-by-ETS/index.php:2)