Symfony Exception

PDOException QueryException

HTTP 500 Internal Server Error

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'sub_descriptions' in 'SELECT' (Connection: mysql, SQL: select `id`, json_unquote(json_extract(`titles`, '$."en"')) as `title`, json_unquote(json_extract(`descriptions`, '$."en"')) as `description`, json_unquote(json_extract(`sub_descriptions`, '$."en"')) as `sub_description`, `path`, `meta`, `source`, `source_filter`, `status`, `static`, `modify_date_at`, `details`, `created_at`, `updated_at` from `meta_pages` where ((((`path` = or `path` = / or `path` is null) and `static` = 1))) and `status` = 1)

Exceptions 2

Illuminate\Database\ QueryException

Show exception properties
Illuminate\Database\QueryException {#1088
  +errorInfo: array:3 [
    0 => "42S22"
    1 => 1054
    2 => "Unknown column 'sub_descriptions' in 'SELECT'"
  ]
  +connectionName: "mysql"
  #sql: "select `id`, json_unquote(json_extract(`titles`, '$."en"')) as `title`, json_unquote(json_extract(`descriptions`, '$."en"')) as `description`, json_unquote(json_extract(`sub_descriptions`, '$."en"')) as `sub_description`, `path`, `meta`, `source`, `source_filter`, `status`, `static`, `modify_date_at`, `details`, `created_at`, `updated_at` from `meta_pages` where ((((`path` = ? or `path` = ? or `path` is null) and `static` = ?))) and `status` = ?"
  #bindings: array:4 [
    0 => ""
    1 => "/"
    2 => 1
    3 => 1
  ]
}
  1.                 throw new UniqueConstraintViolationException(
  2.                     $this->getName(), $query$this->prepareBindings($bindings), $e
  3.                 );
  4.             }
  5.             throw new QueryException(
  6.                 $this->getName(), $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.      * @param  bool  $useReadPdo
  2.      * @return array
  3.      */
  4.     public function select($query$bindings = [], $useReadPdo true)
  5.     {
  6.         return $this->run($query$bindings, function ($query$bindings) use ($useReadPdo) {
  7.             if ($this->pretending()) {
  8.                 return [];
  9.             }
  10.             // For select statements, we'll simply execute the query and return an array
  1.      *
  2.      * @return array
  3.      */
  4.     protected function runSelect()
  5.     {
  6.         return $this->connection->select(
  7.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
  8.         );
  9.     }
  10.     /**
  1.      * @return \Illuminate\Support\Collection<int, \stdClass>
  2.      */
  3.     public function get($columns = ['*'])
  4.     {
  5.         $items = new Collection($this->onceWithColumns(Arr::wrap($columns), function () {
  6.             return $this->processor->processSelect($this$this->runSelect());
  7.         }));
  8.         return $this->applyAfterQueryCallbacks(
  9.             isset($this->groupLimit) ? $this->withoutGroupLimitKeys($items) : $items
  10.         );
  1.         if (is_null($original)) {
  2.             $this->columns $columns;
  3.         }
  4.         $result $callback();
  5.         $this->columns $original;
  6.         return $result;
  7.     }
  1.      * @param  array|string  $columns
  2.      * @return \Illuminate\Support\Collection<int, \stdClass>
  3.      */
  4.     public function get($columns = ['*'])
  5.     {
  6.         $items = new Collection($this->onceWithColumns(Arr::wrap($columns), function () {
  7.             return $this->processor->processSelect($this$this->runSelect());
  8.         }));
  9.         return $this->applyAfterQueryCallbacks(
  10.             isset($this->groupLimit) ? $this->withoutGroupLimitKeys($items) : $items
  1.      * @return array<int, TModel>
  2.      */
  3.     public function getModels($columns = ['*'])
  4.     {
  5.         return $this->model->hydrate(
  6.             $this->query->get($columns)->all()
  7.         )->all();
  8.     }
  9.     /**
  10.      * Eager load the relationships for the models.
  1.         $builder $this->applyScopes();
  2.         // If we actually found models we will also eager load any relationships that
  3.         // have been specified as needing to be eager loaded, which will solve the
  4.         // n+1 query issue for the developers to avoid running a lot of queries.
  5.         if (count($models $builder->getModels($columns)) > 0) {
  6.             $models $builder->eagerLoadRelations($models);
  7.         }
  8.         return $this->applyAfterQueryCallbacks(
  9.             $builder->getModel()->newCollection($models)
  1.         $this->setModel(MetaPages::class);
  2.     }
  3.     public function getPageDetails(string $pathstring $params "")
  4.     {
  5.         $pages $this->model(true)->publicSelect()->getByPath($path)->isTrue()->get();
  6.         $page null;
  7.         // lastQuery();
  8.         foreach($pages as $p)
  9.         {
  10.             if($p->matchedPath($path$params))
  1.     }
  2.     public function bot(Request $requestnull|string $route "")
  3.     {
  4.         $this->service->meta->setRequest($request$route);
  5.         $this->service->getPageDetails($this->service->meta->route$this->service->meta->params);
  6.         return view("seo::meta"$this->service->meta->getData());
  7.     }
  8.     public function robotTxt(SitemapsFiles $sitemapsFiles)
  9.     {
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.      */
  2.     protected function callControllerCallable(callable $callable, array $parameters = [])
  3.     {
  4.         try {
  5.             return $this->prepareResponse(
  6.                 $this->call($callable$parameters)
  7.             );
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  10.         }
  11.     }
  1.         if (count($middleware) > 0) {
  2.             return $this->callLumenControllerWithMiddleware(
  3.                 $instance$method$routeInfo$middleware
  4.             );
  5.         } else {
  6.             return $this->callControllerCallable(
  7.                 [$instance$method], $routeInfo[2]
  8.             );
  9.         }
  10.     }
  1.         if (! method_exists($instance $this->make($controller), $method)) {
  2.             throw new NotFoundHttpException;
  3.         }
  4.         if ($instance instanceof LumenController) {
  5.             return $this->callLumenController($instance$method$routeInfo);
  6.         } else {
  7.             return $this->callControllerCallable(
  8.                 [$instance$method], $routeInfo[2]
  9.             );
  10.         }
  1.     protected function callActionOnArrayBasedRoute($routeInfo)
  2.     {
  3.         $action $routeInfo[1];
  4.         if (isset($action['uses'])) {
  5.             return $this->prepareResponse($this->callControllerAction($routeInfo));
  6.         }
  7.         foreach ($action as $value) {
  8.             if ($value instanceof Closure) {
  9.                 $callable $value->bindTo(new RoutingClosure);
  1.         // Pipe through route middleware...
  2.         if (isset($action['middleware'])) {
  3.             $middleware $this->gatherMiddlewareClassNames($action['middleware']);
  4.             return $this->prepareResponse($this->sendThroughPipeline($middleware, function () {
  5.                 return $this->callActionOnArrayBasedRoute($this['request']->route());
  6.             }));
  7.         }
  8.         return $this->prepareResponse(
  9.             $this->callActionOnArrayBasedRoute($routeInfo)
  1.      */
  2.     protected function prepareDestination(BaseClosure $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.     public function handle($requestClosure $next)
  2.     {
  3.         $paths explode("/"substr($request->getPathInfo(), 1));
  4.         if(Locales::getList()->has($paths[0])) Locales::setLocale($paths[0]);
  5.         return $next($request);
  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.         return function ($stack$pipe) {
  2.             return function ($passable) use ($stack$pipe) {
  3.                 try {
  4.                     $slice parent::carry();
  5.                     return ($slice($stack$pipe))($passable);
  6.                 } catch (Throwable $e) {
  7.                     return $this->handleException($passable$e);
  8.                 }
  9.             };
  10.         };
  1.             }
  2.     
  3.             ServicesLocales::setLocale($locale);
  4.         }
  5.         
  6.         return $next($request);
  7.     }
  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.         return function ($stack$pipe) {
  2.             return function ($passable) use ($stack$pipe) {
  3.                 try {
  4.                     $slice parent::carry();
  5.                     return ($slice($stack$pipe))($passable);
  6.                 } catch (Throwable $e) {
  7.                     return $this->handleException($passable$e);
  8.                 }
  9.             };
  10.         };
  1.         $pipeline array_reduce(
  2.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  3.         );
  4.         try {
  5.             return $pipeline($this->passable);
  6.         } finally {
  7.             if ($this->finally) {
  8.                 ($this->finally)($this->passable);
  9.             }
  10.         }
  1.     {
  2.         if (count($middleware) > && ! $this->shouldSkipMiddleware()) {
  3.             return (new Pipeline($this))
  4.                 ->send($this->make('request'))
  5.                 ->through($middleware)
  6.                 ->then($then);
  7.         }
  8.         return $then($this->make('request'));
  9.     }
  1.         // Pipe through route middleware...
  2.         if (isset($action['middleware'])) {
  3.             $middleware $this->gatherMiddlewareClassNames($action['middleware']);
  4.             return $this->prepareResponse($this->sendThroughPipeline($middleware, function () {
  5.                 return $this->callActionOnArrayBasedRoute($this['request']->route());
  6.             }));
  7.         }
  8.         return $this->prepareResponse(
  1.             case Dispatcher::NOT_FOUND:
  2.                 throw new NotFoundHttpException;
  3.             case Dispatcher::METHOD_NOT_ALLOWED:
  4.                 throw new MethodNotAllowedHttpException($routeInfo[1]);
  5.             case Dispatcher::FOUND:
  6.                 return $this->handleFoundRoute($routeInfo);
  7.         }
  8.     }
  9.     /**
  10.      * Handle a route found by the dispatcher.
  1.                 if (isset($this->router->getRoutes()[$method.$pathInfo])) {
  2.                     return $this->handleFoundRoute([true$this->router->getRoutes()[$method.$pathInfo]['action'], []]);
  3.                 }
  4.                 return $this->handleDispatcherResponse(
  5.                     $this->createDispatcher()->dispatch($method$pathInfo)
  6.                 );
  7.             });
  8.         } catch (Throwable $e) {
  9.             return $this->prepareResponse($this->sendExceptionToHandler($e));
  1.      */
  2.     protected function prepareDestination(BaseClosure $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.                 $request->merge($dataRequest);
  3.             }
  4.         }
  5.         return $next($request);
  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.         return function ($stack$pipe) {
  2.             return function ($passable) use ($stack$pipe) {
  3.                 try {
  4.                     $slice parent::carry();
  5.                     return ($slice($stack$pipe))($passable);
  6.                 } catch (Throwable $e) {
  7.                     return $this->handleException($passable$e);
  8.                 }
  9.             };
  10.         };
  1.         $pipeline array_reduce(
  2.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  3.         );
  4.         try {
  5.             return $pipeline($this->passable);
  6.         } finally {
  7.             if ($this->finally) {
  8.                 ($this->finally)($this->passable);
  9.             }
  10.         }
  1.     {
  2.         if (count($middleware) > && ! $this->shouldSkipMiddleware()) {
  3.             return (new Pipeline($this))
  4.                 ->send($this->make('request'))
  5.                 ->through($middleware)
  6.                 ->then($then);
  7.         }
  8.         return $then($this->make('request'));
  9.     }
  1.         [$method$pathInfo] = $this->parseIncomingRequest($request);
  2.         try {
  3.             $this->boot();
  4.             return $this->sendThroughPipeline($this->middleware, function ($request) use ($method$pathInfo) {
  5.                 $this->instance(Request::class, $request);
  6.                 if (isset($this->router->getRoutes()[$method.$pathInfo])) {
  7.                     return $this->handleFoundRoute([true$this->router->getRoutes()[$method.$pathInfo]['action'], []]);
  8.                 }
  1.      * @param  \Symfony\Component\HttpFoundation\Request|null  $request
  2.      * @return void
  3.      */
  4.     public function run($request null)
  5.     {
  6.         $response $this->dispatch($request);
  7.         if ($response instanceof SymfonyResponse) {
  8.             $response->send();
  9.         } else {
  10.             echo (string) $response;
  1. | the client's browser allowing them to enjoy the creative
  2. | and wonderful application we have prepared for them.
  3. |
  4. */
  5. $app->run();
include('/home/oriento/system/modules/ecommerce/public_html/index.php') in /home/oriento/system/modules/ecommerce/public_html/meta.php (line 3)
  1. <?php
  2. define("__meta__"true);
  3. include "index.php";

PDOException

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'sub_descriptions' in 'SELECT'

  1.             // For select statements, we'll simply execute the query and return an array
  2.             // of the database result set. Each element in the array will be a single
  3.             // row from the database table, and will either be an array or objects.
  4.             $statement $this->prepared(
  5.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
  6.             );
  7.             $this->bindValues($statement$this->prepareBindings($bindings));
  8.             $statement->execute();
  1.             // For select statements, we'll simply execute the query and return an array
  2.             // of the database result set. Each element in the array will be a single
  3.             // row from the database table, and will either be an array or objects.
  4.             $statement $this->prepared(
  5.                 $this->getPdoForSelect($useReadPdo)->prepare($query)
  6.             );
  7.             $this->bindValues($statement$this->prepareBindings($bindings));
  8.             $statement->execute();
  1.     {
  2.         // To execute the statement, we'll simply call the callback, which will actually
  3.         // run the SQL against the PDO connection. Then we can calculate the time it
  4.         // took to execute and log the query SQL, bindings and time in our memory.
  5.         try {
  6.             return $callback($query$bindings);
  7.         }
  8.         // If an exception occurs when attempting to run a query, we'll format the error
  9.         // message to include the bindings with SQL, which will make this exception a
  10.         // lot more helpful to the developer instead of just the database's errors.
  1.         // Here we will run this query. If an exception occurs we'll determine if it was
  2.         // caused by a connection that has been lost. If that is the cause, we'll try
  3.         // to re-establish connection and re-run the query with a fresh connection.
  4.         try {
  5.             $result $this->runQueryCallback($query$bindings$callback);
  6.         } catch (QueryException $e) {
  7.             $result $this->handleQueryException(
  8.                 $e$query$bindings$callback
  9.             );
  10.         }
  1.      * @param  bool  $useReadPdo
  2.      * @return array
  3.      */
  4.     public function select($query$bindings = [], $useReadPdo true)
  5.     {
  6.         return $this->run($query$bindings, function ($query$bindings) use ($useReadPdo) {
  7.             if ($this->pretending()) {
  8.                 return [];
  9.             }
  10.             // For select statements, we'll simply execute the query and return an array
  1.      *
  2.      * @return array
  3.      */
  4.     protected function runSelect()
  5.     {
  6.         return $this->connection->select(
  7.             $this->toSql(), $this->getBindings(), ! $this->useWritePdo
  8.         );
  9.     }
  10.     /**
  1.      * @return \Illuminate\Support\Collection<int, \stdClass>
  2.      */
  3.     public function get($columns = ['*'])
  4.     {
  5.         $items = new Collection($this->onceWithColumns(Arr::wrap($columns), function () {
  6.             return $this->processor->processSelect($this$this->runSelect());
  7.         }));
  8.         return $this->applyAfterQueryCallbacks(
  9.             isset($this->groupLimit) ? $this->withoutGroupLimitKeys($items) : $items
  10.         );
  1.         if (is_null($original)) {
  2.             $this->columns $columns;
  3.         }
  4.         $result $callback();
  5.         $this->columns $original;
  6.         return $result;
  7.     }
  1.      * @param  array|string  $columns
  2.      * @return \Illuminate\Support\Collection<int, \stdClass>
  3.      */
  4.     public function get($columns = ['*'])
  5.     {
  6.         $items = new Collection($this->onceWithColumns(Arr::wrap($columns), function () {
  7.             return $this->processor->processSelect($this$this->runSelect());
  8.         }));
  9.         return $this->applyAfterQueryCallbacks(
  10.             isset($this->groupLimit) ? $this->withoutGroupLimitKeys($items) : $items
  1.      * @return array<int, TModel>
  2.      */
  3.     public function getModels($columns = ['*'])
  4.     {
  5.         return $this->model->hydrate(
  6.             $this->query->get($columns)->all()
  7.         )->all();
  8.     }
  9.     /**
  10.      * Eager load the relationships for the models.
  1.         $builder $this->applyScopes();
  2.         // If we actually found models we will also eager load any relationships that
  3.         // have been specified as needing to be eager loaded, which will solve the
  4.         // n+1 query issue for the developers to avoid running a lot of queries.
  5.         if (count($models $builder->getModels($columns)) > 0) {
  6.             $models $builder->eagerLoadRelations($models);
  7.         }
  8.         return $this->applyAfterQueryCallbacks(
  9.             $builder->getModel()->newCollection($models)
  1.         $this->setModel(MetaPages::class);
  2.     }
  3.     public function getPageDetails(string $pathstring $params "")
  4.     {
  5.         $pages $this->model(true)->publicSelect()->getByPath($path)->isTrue()->get();
  6.         $page null;
  7.         // lastQuery();
  8.         foreach($pages as $p)
  9.         {
  10.             if($p->matchedPath($path$params))
  1.     }
  2.     public function bot(Request $requestnull|string $route "")
  3.     {
  4.         $this->service->meta->setRequest($request$route);
  5.         $this->service->getPageDetails($this->service->meta->route$this->service->meta->params);
  6.         return view("seo::meta"$this->service->meta->getData());
  7.     }
  8.     public function robotTxt(SitemapsFiles $sitemapsFiles)
  9.     {
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  9.      * Call a string reference to a class using Class@method syntax.
  1.      * @param  mixed  ...$args
  2.      * @return mixed
  3.      */
  4.     public static function unwrapIfClosure($value, ...$args)
  5.     {
  6.         return $value instanceof Closure $value(...$args) : $value;
  7.     }
  8.     /**
  9.      * Get the class name of the given parameter's type, if possible.
  10.      *
  1.         if ($container->hasMethodBinding($method)) {
  2.             return $container->callMethodBinding($method$callback[0]);
  3.         }
  4.         return Util::unwrapIfClosure($default);
  5.     }
  6.     /**
  7.      * Normalize the given callback into a Class@method string.
  8.      *
  1.         if (static::isCallableWithAtSign($callback) || $defaultMethod) {
  2.             return static::callClass($container$callback$parameters$defaultMethod);
  3.         }
  4.         return static::callBoundMethod($container$callback, function () use ($container$callback$parameters) {
  5.             return $callback(...array_values(static::getMethodDependencies($container$callback$parameters)));
  6.         });
  7.     }
  8.     /**
  1.             $this->buildStack[] = $className;
  2.             $pushedToBuildStack true;
  3.         }
  4.         $result BoundMethod::call($this$callback$parameters$defaultMethod);
  5.         if ($pushedToBuildStack) {
  6.             array_pop($this->buildStack);
  7.         }
  1.      */
  2.     protected function callControllerCallable(callable $callable, array $parameters = [])
  3.     {
  4.         try {
  5.             return $this->prepareResponse(
  6.                 $this->call($callable$parameters)
  7.             );
  8.         } catch (HttpResponseException $e) {
  9.             return $e->getResponse();
  10.         }
  11.     }
  1.         if (count($middleware) > 0) {
  2.             return $this->callLumenControllerWithMiddleware(
  3.                 $instance$method$routeInfo$middleware
  4.             );
  5.         } else {
  6.             return $this->callControllerCallable(
  7.                 [$instance$method], $routeInfo[2]
  8.             );
  9.         }
  10.     }
  1.         if (! method_exists($instance $this->make($controller), $method)) {
  2.             throw new NotFoundHttpException;
  3.         }
  4.         if ($instance instanceof LumenController) {
  5.             return $this->callLumenController($instance$method$routeInfo);
  6.         } else {
  7.             return $this->callControllerCallable(
  8.                 [$instance$method], $routeInfo[2]
  9.             );
  10.         }
  1.     protected function callActionOnArrayBasedRoute($routeInfo)
  2.     {
  3.         $action $routeInfo[1];
  4.         if (isset($action['uses'])) {
  5.             return $this->prepareResponse($this->callControllerAction($routeInfo));
  6.         }
  7.         foreach ($action as $value) {
  8.             if ($value instanceof Closure) {
  9.                 $callable $value->bindTo(new RoutingClosure);
  1.         // Pipe through route middleware...
  2.         if (isset($action['middleware'])) {
  3.             $middleware $this->gatherMiddlewareClassNames($action['middleware']);
  4.             return $this->prepareResponse($this->sendThroughPipeline($middleware, function () {
  5.                 return $this->callActionOnArrayBasedRoute($this['request']->route());
  6.             }));
  7.         }
  8.         return $this->prepareResponse(
  9.             $this->callActionOnArrayBasedRoute($routeInfo)
  1.      */
  2.     protected function prepareDestination(BaseClosure $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.     public function handle($requestClosure $next)
  2.     {
  3.         $paths explode("/"substr($request->getPathInfo(), 1));
  4.         if(Locales::getList()->has($paths[0])) Locales::setLocale($paths[0]);
  5.         return $next($request);
  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.         return function ($stack$pipe) {
  2.             return function ($passable) use ($stack$pipe) {
  3.                 try {
  4.                     $slice parent::carry();
  5.                     return ($slice($stack$pipe))($passable);
  6.                 } catch (Throwable $e) {
  7.                     return $this->handleException($passable$e);
  8.                 }
  9.             };
  10.         };
  1.             }
  2.     
  3.             ServicesLocales::setLocale($locale);
  4.         }
  5.         
  6.         return $next($request);
  7.     }
  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.         return function ($stack$pipe) {
  2.             return function ($passable) use ($stack$pipe) {
  3.                 try {
  4.                     $slice parent::carry();
  5.                     return ($slice($stack$pipe))($passable);
  6.                 } catch (Throwable $e) {
  7.                     return $this->handleException($passable$e);
  8.                 }
  9.             };
  10.         };
  1.         $pipeline array_reduce(
  2.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  3.         );
  4.         try {
  5.             return $pipeline($this->passable);
  6.         } finally {
  7.             if ($this->finally) {
  8.                 ($this->finally)($this->passable);
  9.             }
  10.         }
  1.     {
  2.         if (count($middleware) > && ! $this->shouldSkipMiddleware()) {
  3.             return (new Pipeline($this))
  4.                 ->send($this->make('request'))
  5.                 ->through($middleware)
  6.                 ->then($then);
  7.         }
  8.         return $then($this->make('request'));
  9.     }
  1.         // Pipe through route middleware...
  2.         if (isset($action['middleware'])) {
  3.             $middleware $this->gatherMiddlewareClassNames($action['middleware']);
  4.             return $this->prepareResponse($this->sendThroughPipeline($middleware, function () {
  5.                 return $this->callActionOnArrayBasedRoute($this['request']->route());
  6.             }));
  7.         }
  8.         return $this->prepareResponse(
  1.             case Dispatcher::NOT_FOUND:
  2.                 throw new NotFoundHttpException;
  3.             case Dispatcher::METHOD_NOT_ALLOWED:
  4.                 throw new MethodNotAllowedHttpException($routeInfo[1]);
  5.             case Dispatcher::FOUND:
  6.                 return $this->handleFoundRoute($routeInfo);
  7.         }
  8.     }
  9.     /**
  10.      * Handle a route found by the dispatcher.
  1.                 if (isset($this->router->getRoutes()[$method.$pathInfo])) {
  2.                     return $this->handleFoundRoute([true$this->router->getRoutes()[$method.$pathInfo]['action'], []]);
  3.                 }
  4.                 return $this->handleDispatcherResponse(
  5.                     $this->createDispatcher()->dispatch($method$pathInfo)
  6.                 );
  7.             });
  8.         } catch (Throwable $e) {
  9.             return $this->prepareResponse($this->sendExceptionToHandler($e));
  1.      */
  2.     protected function prepareDestination(BaseClosure $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.                 $request->merge($dataRequest);
  3.             }
  4.         }
  5.         return $next($request);
  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.         return function ($stack$pipe) {
  2.             return function ($passable) use ($stack$pipe) {
  3.                 try {
  4.                     $slice parent::carry();
  5.                     return ($slice($stack$pipe))($passable);
  6.                 } catch (Throwable $e) {
  7.                     return $this->handleException($passable$e);
  8.                 }
  9.             };
  10.         };
  1.         $pipeline array_reduce(
  2.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  3.         );
  4.         try {
  5.             return $pipeline($this->passable);
  6.         } finally {
  7.             if ($this->finally) {
  8.                 ($this->finally)($this->passable);
  9.             }
  10.         }
  1.     {
  2.         if (count($middleware) > && ! $this->shouldSkipMiddleware()) {
  3.             return (new Pipeline($this))
  4.                 ->send($this->make('request'))
  5.                 ->through($middleware)
  6.                 ->then($then);
  7.         }
  8.         return $then($this->make('request'));
  9.     }
  1.         [$method$pathInfo] = $this->parseIncomingRequest($request);
  2.         try {
  3.             $this->boot();
  4.             return $this->sendThroughPipeline($this->middleware, function ($request) use ($method$pathInfo) {
  5.                 $this->instance(Request::class, $request);
  6.                 if (isset($this->router->getRoutes()[$method.$pathInfo])) {
  7.                     return $this->handleFoundRoute([true$this->router->getRoutes()[$method.$pathInfo]['action'], []]);
  8.                 }
  1.      * @param  \Symfony\Component\HttpFoundation\Request|null  $request
  2.      * @return void
  3.      */
  4.     public function run($request null)
  5.     {
  6.         $response $this->dispatch($request);
  7.         if ($response instanceof SymfonyResponse) {
  8.             $response->send();
  9.         } else {
  10.             echo (string) $response;
  1. | the client's browser allowing them to enjoy the creative
  2. | and wonderful application we have prepared for them.
  3. |
  4. */
  5. $app->run();
include('/home/oriento/system/modules/ecommerce/public_html/index.php') in /home/oriento/system/modules/ecommerce/public_html/meta.php (line 3)
  1. <?php
  2. define("__meta__"true);
  3. include "index.php";

Stack Traces 2

[2/2] QueryException
Illuminate\Database\QueryException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'sub_descriptions' in 'SELECT' (Connection: mysql, SQL: select `id`, json_unquote(json_extract(`titles`, '$."en"')) as `title`, json_unquote(json_extract(`descriptions`, '$."en"')) as `description`, json_unquote(json_extract(`sub_descriptions`, '$."en"')) as `sub_description`, `path`, `meta`, `source`, `source_filter`, `status`, `static`, `modify_date_at`, `details`, `created_at`, `updated_at` from `meta_pages` where ((((`path` =  or `path` = / or `path` is null) and `static` = 1))) and `status` = 1)

  at /home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:825
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:779)
  at Illuminate\Database\Connection->run()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:398)
  at Illuminate\Database\Connection->select()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3106)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3091)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3676)
  at Illuminate\Database\Query\Builder->onceWithColumns()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3090)
  at Illuminate\Database\Query\Builder->get()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Eloquent/Builder.php:811)
  at Illuminate\Database\Eloquent\Builder->getModels()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Eloquent/Builder.php:793)
  at Illuminate\Database\Eloquent\Builder->get()
     (/home/oriento/system/modules/ecommerce/system/library/seo/src/Services/MetaPagesService.php:21)
  at Digitaleka\Seo\Services\MetaPagesService->getPageDetails()
     (/home/oriento/system/modules/ecommerce/system/library/seo/src/Controllers/MetaPagesController.php:51)
  at Digitaleka\Seo\Controllers\MetaPagesController->bot()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/Util.php:43)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/BoundMethod.php:95)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/BoundMethod.php:35)
  at Illuminate\Container\BoundMethod::call()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/Container.php:696)
  at Illuminate\Container\Container->call()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:391)
  at Laravel\Lumen\Application->callControllerCallable()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:356)
  at Laravel\Lumen\Application->callLumenController()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:331)
  at Laravel\Lumen\Application->callControllerAction()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:284)
  at Laravel\Lumen\Application->callActionOnArrayBasedRoute()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:264)
  at Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:48)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/library/seo/src/Middleware/LocaleMeta.php:14)
  at Digitaleka\Seo\Middleware\LocaleMeta->handle()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/library/service/src/Middleware/Locales.php:39)
  at Optivius\Middleware\Locales->handle()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:127)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:428)
  at Laravel\Lumen\Application->sendThroughPipeline()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:263)
  at Laravel\Lumen\Application->handleFoundRoute()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:239)
  at Laravel\Lumen\Application->handleDispatcherResponse()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:174)
  at Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:48)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/library/service/src/Middleware/SavedRequests.php:29)
  at Optivius\Middleware\SavedRequests->handle()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:127)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:428)
  at Laravel\Lumen\Application->sendThroughPipeline()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:167)
  at Laravel\Lumen\Application->dispatch()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:112)
  at Laravel\Lumen\Application->run()
     (/home/oriento/system/modules/ecommerce/public_html/index.php:28)
  at include('/home/oriento/system/modules/ecommerce/public_html/index.php')
     (/home/oriento/system/modules/ecommerce/public_html/meta.php:3)                
[1/2] PDOException
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'sub_descriptions' in 'SELECT'

  at /home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:407
  at PDO->prepare()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:407)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:812)
  at Illuminate\Database\Connection->runQueryCallback()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:779)
  at Illuminate\Database\Connection->run()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Connection.php:398)
  at Illuminate\Database\Connection->select()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3106)
  at Illuminate\Database\Query\Builder->runSelect()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3091)
  at Illuminate\Database\Query\Builder->Illuminate\Database\Query\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3676)
  at Illuminate\Database\Query\Builder->onceWithColumns()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Query/Builder.php:3090)
  at Illuminate\Database\Query\Builder->get()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Eloquent/Builder.php:811)
  at Illuminate\Database\Eloquent\Builder->getModels()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/database/Eloquent/Builder.php:793)
  at Illuminate\Database\Eloquent\Builder->get()
     (/home/oriento/system/modules/ecommerce/system/library/seo/src/Services/MetaPagesService.php:21)
  at Digitaleka\Seo\Services\MetaPagesService->getPageDetails()
     (/home/oriento/system/modules/ecommerce/system/library/seo/src/Controllers/MetaPagesController.php:51)
  at Digitaleka\Seo\Controllers\MetaPagesController->bot()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/BoundMethod.php:36)
  at Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/Util.php:43)
  at Illuminate\Container\Util::unwrapIfClosure()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/BoundMethod.php:95)
  at Illuminate\Container\BoundMethod::callBoundMethod()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/BoundMethod.php:35)
  at Illuminate\Container\BoundMethod::call()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/container/Container.php:696)
  at Illuminate\Container\Container->call()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:391)
  at Laravel\Lumen\Application->callControllerCallable()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:356)
  at Laravel\Lumen\Application->callLumenController()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:331)
  at Laravel\Lumen\Application->callControllerAction()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:284)
  at Laravel\Lumen\Application->callActionOnArrayBasedRoute()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:264)
  at Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:48)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/library/seo/src/Middleware/LocaleMeta.php:14)
  at Digitaleka\Seo\Middleware\LocaleMeta->handle()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/library/service/src/Middleware/Locales.php:39)
  at Optivius\Middleware\Locales->handle()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:127)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:428)
  at Laravel\Lumen\Application->sendThroughPipeline()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:263)
  at Laravel\Lumen\Application->handleFoundRoute()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:239)
  at Laravel\Lumen\Application->handleDispatcherResponse()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:174)
  at Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:48)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/library/service/src/Middleware/SavedRequests.php:29)
  at Optivius\Middleware\SavedRequests->handle()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:209)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Routing/Pipeline.php:30)
  at Laravel\Lumen\Routing\Pipeline->Laravel\Lumen\Routing\{closure}()
     (/home/oriento/system/modules/ecommerce/system/vendor/illuminate/pipeline/Pipeline.php:127)
  at Illuminate\Pipeline\Pipeline->then()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:428)
  at Laravel\Lumen\Application->sendThroughPipeline()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:167)
  at Laravel\Lumen\Application->dispatch()
     (/home/oriento/system/modules/ecommerce/system/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php:112)
  at Laravel\Lumen\Application->run()
     (/home/oriento/system/modules/ecommerce/public_html/index.php:28)
  at include('/home/oriento/system/modules/ecommerce/public_html/index.php')
     (/home/oriento/system/modules/ecommerce/public_html/meta.php:3)