• Как в Laravel+jquery: Авторизация - как сделать?

    @serNevajno Автор вопроса
    Решение:
    В классе LoginController:
    /* Send the response after the user was authenticated.
         *
         * @param  \Illuminate\Http\Request  $request
         * @return \Illuminate\Http\Response
         */
        protected function sendLoginResponse(Request $request) {
            $this->clearLoginAttempts($request);
    
            return response()->json(['SUCCESS' => 'AUTHENTICATED'], 200);
        }
    
        /**
         * Get the failed login response instance.
         *
         * @return \Illuminate\Http\Response
         */
        protected function sendFailedLoginResponse() {
            return response()->json(['ERROR' => 'AUTH_FAILED'], 401);
        }
    
        /**
         * Error after determining they are locked out.
         *
         * @param  \Illuminate\Http\Request  $request
         * @return \Illuminate\Http\Response
         */
        protected function sendLockoutResponse(Request $request) {
            $seconds = $this->limiter()->availableIn(
                $this->throttleKey($request)
            );
    
            return response()->json(['ERROR' => 'TOO_MANY_ATTEMPTS', 'WAIT' => $seconds], 401);
        }
    Ответ написан
    Комментировать
  • Как из базы MS SQL вытащить изображение?

    @serNevajno Автор вопроса
    Решил проблему, все дело было в mssql.textlimit = 4096.
    Ответ написан
    Комментировать