From 55089accb55a3dd3994cd9af7785352b020d5bbb Mon Sep 17 00:00:00 2001 From: iironside Date: Thu, 17 Mar 2022 14:50:57 +0300 Subject: [PATCH] added get-points-number, get-question-number methods, update status in UserQuestionnaire, some refactoring --- .../views/user-questionnaire/index.php | 7 +- .../views/user-questionnaire/view.php | 4 +- .../helpers/UserQuestionnaireStatusHelper.php | 54 ++++ common/models/Position.php | 5 + common/models/UserQuestionnaire.php | 2 +- common/services/ScoreCalculatorService.php | 3 +- common/services/UserCardService.php | 27 ++ common/services/UserQuestionnaireService.php | 47 ++- docs/api/main.md | 167 +++++++++- docs/api/user.md | 126 ++++++++ frontend-access.log | 299 ++++++++++++++++++ frontend-error.log | 121 +++++++ .../api/controllers/UserCardController.php | 24 ++ .../UserQuestionnaireController.php | 24 ++ 14 files changed, 895 insertions(+), 15 deletions(-) create mode 100644 common/helpers/UserQuestionnaireStatusHelper.php create mode 100644 common/services/UserCardService.php create mode 100644 docs/api/user.md create mode 100644 frontend/modules/api/controllers/UserCardController.php diff --git a/backend/modules/questionnaire/views/user-questionnaire/index.php b/backend/modules/questionnaire/views/user-questionnaire/index.php index 7b64d76..fa23208 100644 --- a/backend/modules/questionnaire/views/user-questionnaire/index.php +++ b/backend/modules/questionnaire/views/user-questionnaire/index.php @@ -1,8 +1,7 @@ params['breadcrumbs'][] = $this->title; [ 'attribute' => 'status', 'format' => 'raw', - 'filter' => StatusHelper::statusList(), + 'filter' => UserQuestionnaireStatusHelper::statusList(), 'value' => function ($model) { - return StatusHelper::statusLabel($model->status); + return UserQuestionnaireStatusHelper::statusLabel($model->status); }, ], 'created_at', diff --git a/backend/modules/questionnaire/views/user-questionnaire/view.php b/backend/modules/questionnaire/views/user-questionnaire/view.php index 8ed5861..bdd5be1 100644 --- a/backend/modules/questionnaire/views/user-questionnaire/view.php +++ b/backend/modules/questionnaire/views/user-questionnaire/view.php @@ -2,7 +2,7 @@ use common\services\ScoreCalculatorService; use common\helpers\AnswerHelper; -use common\helpers\StatusHelper; +use common\helpers\UserQuestionnaireStatusHelper; use yii\bootstrap\Modal; use yii\grid\GridView; use yii\helpers\ArrayHelper; @@ -61,7 +61,7 @@ YiiAsset::register($this); [ 'attribute' => 'status', 'format' => 'raw', - 'value' => StatusHelper::statusLabel($model->status), + 'value' => UserQuestionnaireStatusHelper::statusLabel($model->status), ], 'created_at', 'updated_at', diff --git a/common/helpers/UserQuestionnaireStatusHelper.php b/common/helpers/UserQuestionnaireStatusHelper.php new file mode 100644 index 0000000..af45b75 --- /dev/null +++ b/common/helpers/UserQuestionnaireStatusHelper.php @@ -0,0 +1,54 @@ + 'Не используется', + self::STATUS_ACTIVE => 'Активен', + self::STATUS_COMPLETED => 'Завершён', + self::STATUS_ON_INSPECTION => 'На проверке' + ]; + } + + /** + * @throws Exception + */ + public static function statusName($status): string + { + return ArrayHelper::getValue(self::statusList(), $status); + } + + /** + * @throws Exception + */ + public static function statusLabel($status): string + { + switch ($status) { + case self::STATUS_PASSIVE: + $class = 'label label-danger'; + break; + case ($status === self::STATUS_ACTIVE or $status === self::STATUS_COMPLETED): + $class = 'label label-success'; + break; + default: + $class = 'label label-default'; + } + + return Html::tag('span', ArrayHelper::getValue(self::statusList(), $status), [ + 'class' => $class, + ]); + } +} \ No newline at end of file diff --git a/common/models/Position.php b/common/models/Position.php index 3f64691..a3b4667 100755 --- a/common/models/Position.php +++ b/common/models/Position.php @@ -41,4 +41,9 @@ class Position extends \yii\db\ActiveRecord 'name' => 'Название', ]; } + + public function getUserCard(): \yii\db\ActiveQuery + { + return $this->hasMany(UserCard::class, ['position_id' => 'id']); + } } diff --git a/common/models/UserQuestionnaire.php b/common/models/UserQuestionnaire.php index 55abb34..5882d60 100644 --- a/common/models/UserQuestionnaire.php +++ b/common/models/UserQuestionnaire.php @@ -181,7 +181,7 @@ class UserQuestionnaire extends ActiveRecord { $models = self::find() ->where(['user_id' => $user_id]) - ->andWhere(['user_questionnaire.status' => '1']) + ->andWhere(['not', ['user_questionnaire.status' => 0]]) ->all(); $modelsArr = array(); diff --git a/common/services/ScoreCalculatorService.php b/common/services/ScoreCalculatorService.php index b7318de..2d3f4f6 100644 --- a/common/services/ScoreCalculatorService.php +++ b/common/services/ScoreCalculatorService.php @@ -77,6 +77,8 @@ class ScoreCalculatorService self::setPercentCorrectAnswers($user_correct_answers_num, $userQuestionnaire); $userQuestionnaire->score = round($score); + $userQuestionnaire->status = 2; + $userQuestionnaire->testing_date = date('Y:m:d H:i:s'); $userQuestionnaire->save(); } @@ -108,6 +110,5 @@ class ScoreCalculatorService else { $userQuestionnaire->percent_correct_answers = round($user_correct_answers_num, 2); } - $userQuestionnaire->save(); } } \ No newline at end of file diff --git a/common/services/UserCardService.php b/common/services/UserCardService.php new file mode 100644 index 0000000..bb743c2 --- /dev/null +++ b/common/services/UserCardService.php @@ -0,0 +1,27 @@ + $user_id]); + if (empty($userCard)) { + throw new ServerErrorHttpException(json_encode($userCard->errors)); + } + return array('fio' => $userCard->fio, + 'photo' => $userCard->photo, + 'gender' => $userCard->gender, + 'level' => $userCard->level, + 'years_of_exp' => $userCard->years_of_exp, + 'specification' => $userCard->specification, + 'position_name' => $userCard->position->name); + } +} \ No newline at end of file diff --git a/common/services/UserQuestionnaireService.php b/common/services/UserQuestionnaireService.php index 9a8022d..999a499 100644 --- a/common/services/UserQuestionnaireService.php +++ b/common/services/UserQuestionnaireService.php @@ -2,8 +2,11 @@ namespace common\services; +use common\models\Question; use common\models\UserQuestionnaire; +use yii\base\InvalidConfigException; use yii\web\NotFoundHttpException; +use yii\web\ServerErrorHttpException; class UserQuestionnaireService { @@ -23,15 +26,53 @@ class UserQuestionnaireService /** * @throws NotFoundHttpException + * @throws InvalidConfigException */ - public static function calculateScore($user_questionnaire_uuid) + public static function calculateScore($user_questionnaire_uuid): UserQuestionnaire { $userQuestionnaireModel = UserQuestionnaire::findOne(['uuid' => $user_questionnaire_uuid]); - if(empty($userQuestionnaireModel)) { + if (empty($userQuestionnaireModel)) { throw new NotFoundHttpException('The questionnaire with this uuid does not exist'); } ScoreCalculatorService::rateResponses($userQuestionnaireModel); - ScoreCalculatorService::calculateScore($userQuestionnaireModel); + if (ScoreCalculatorService::checkAnswerFlagsForNull($userQuestionnaireModel)) { + ScoreCalculatorService::calculateScore($userQuestionnaireModel); + } else { + $userQuestionnaireModel->status = 3; + $userQuestionnaireModel->save(); + } return $userQuestionnaireModel; } + + /** + * @throws ServerErrorHttpException + */ + public static function getQuestionNumber($user_questionnaire_uuid): array + { + $userQuestionnaireModel = UserQuestionnaire::findOne(['uuid' => $user_questionnaire_uuid]); + if (empty($userQuestionnaireModel)) { + throw new ServerErrorHttpException(json_encode('Not found UserQuestionnaire')); + } + $count = Question::find() + ->where(['questionnaire_id' => $userQuestionnaireModel->questionnaire_id]) + ->andWhere(['status' => 1]) + ->count(); + return array('question_number' => $count); + } + + /** + * @throws ServerErrorHttpException + */ + public static function getPointsNumber($user_questionnaire_uuid) + { + $userQuestionnaireModel = UserQuestionnaire::findOne(['uuid' => $user_questionnaire_uuid]); + if (empty($userQuestionnaireModel)) { + throw new ServerErrorHttpException(json_encode('Not found UserQuestionnaire')); + } + $pointSum = Question::find() + ->where(['questionnaire_id' => $userQuestionnaireModel->questionnaire_id]) + ->andWhere(['status' => 1]) + ->sum('score'); + return array('sum_point' => $pointSum); + } } \ No newline at end of file diff --git a/docs/api/main.md b/docs/api/main.md index c0f728c..b431d96 100755 --- a/docs/api/main.md +++ b/docs/api/main.md @@ -607,15 +607,86 @@

```json5 -{ + { "user_id": 1, "uuid": "d222f858-60fd-47fb-8731-dc9d5fc384c5", - "score": 20, - "status": 1, - "percent_correct_answers": 0.8 + "score": 11, + "status": 2, + "percent_correct_answers": 0.25, + "testing_date": "2022-03-17 11:14:22", + "questionnaire_title": "Кат1 Анкета 1 активна" } ``` +

+ Возвращаемые параметры объекта анкета: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Параметры + + Значение +
+ user_id + + ID пользователя(int) +
+ uuid + + uuid анкеты пользователя +
+ score + + Полученные балы(int) +
+ status + + Статус: 0 - не активен; 1 - активен; 2 - завершён; 3 - на проверке; +
+ percent_correct_answers + + Процент правильных ответов(float) +
+ testing_date + + Дата тестирования +
+ questionnaire_title + + Название анкеты +
+

Передаваемые параметры объекта вопроса:

@@ -723,6 +794,94 @@ } ``` +### Число балов в анкете +`https://guild.craft-group.xyz/api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5` +

+ Для максимального числа балов в анкеты необходимо отправить GET запрос на URL https://guild.craft-group.xyz/api/user-questionnaire/get-points-number +

+ +

+ Требуемые параметры запроса: +

+ + + + + + + + + +
+ Параметры + + Значение +
+ user_questionnaire_uuid + + UUID анкеты назначеной пользователю +
+

+ Пример запроса: +

+ +`https://guild.craft-group.xyz/api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5` + +

+ Возвращает максимально возможное число балов за анкету b>.
+ Объект Ответа имеет такой вид: +

+ +```json5 +{ + "sum_point": "61" +} +``` + +### Число вопросов в анкете +`https://guild.craft-group.xyz/api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5` +

+ Для числа вопросов в анкете необходимо отправить GET запрос на URL https://guild.craft-group.xyz/api/user-questionnaire/get-question-number +

+ +

+ Требуемые параметры запроса: +

+ + + + + + + + + +
+ Параметры + + Значение +
+ user_questionnaire_uuid + + UUID анкеты назначеной пользователю +
+

+ Пример запроса: +

+ +`https://guild.craft-group.xyz/api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5` + +

+ Возвращает число вопросов в анкете b>.
+ Объект Ответа имеет такой вид: +

+ +```json5 +{ + "question_number": "7" +} +``` + ### Вопросы анкеты `https://guild.craft-group.xyz/api/question/get-questions`

diff --git a/docs/api/user.md b/docs/api/user.md new file mode 100644 index 0000000..fc89766 --- /dev/null +++ b/docs/api/user.md @@ -0,0 +1,126 @@ +# Пользователь + +## Методы + + + + + + + + + + +
+ Метод + + Описание +
+ get-user-card + + Данные пользователя +
+ +## Данные пользователя + +`https://guild.craft-group.xyz/api/user-card/get-user-card?user_id=1` +

+ Параметры: +

+ + + + + + + + + +
+ Параметры + + Значение +
+ user_id + + Id пользователя +
+ +

+ Возвращает объект Пользователь.
+ Каждый объект Пользователь имеет такой вид: +

+ +```json5 +{ + "fio": "Тест менеджер для апи запроса", + "photo": null, + "gender": 1, + "level": 2, + "years_of_exp": null, + "specification": null, + "position_name": "Должность 1" +} +``` + +

+ Параметры: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Параметры + + Значение +
+ fio + + ФИО +
+ photo + + Ссылка на фото +
+ gender + + Пол +
+ level + + Уровень +
+ years_of_exp + + Лет опыта +
+ position_name + + Должность +
diff --git a/frontend-access.log b/frontend-access.log index 708ac13..150c79c 100644 --- a/frontend-access.log +++ b/frontend-access.log @@ -97031,3 +97031,302 @@ 127.0.0.1 - - [16/Mar/2022:11:36:52 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" 127.0.0.1 - - [16/Mar/2022:11:36:52 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" 127.0.0.1 - - [16/Mar/2022:11:36:53 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:11:05:53 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 596 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:07:15 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:09:18 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:09:26 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 596 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:09:47 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 500 1212 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:10:06 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 500 1212 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:10:08 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 500 1212 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:10:37 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:10:50 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 708 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:11:21 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 20 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:11:28 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:11:53 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 20 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:13:03 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 20 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:13:05 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 20 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:13:23 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 708 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:17:08 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 708 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:19:13 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 500 1596 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:19:28 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 62 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:20:31 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 62 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:22:04 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 708 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:22:36 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:23:05 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:23:06 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:23:07 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:23:45 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 62 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:24:13 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:24:24 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 99 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:24:42 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 500 4170 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:24:59 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 99 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:25:19 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 99 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:25:20 +0300] "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1" 200 99 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:25:43 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 70 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:25:54 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 70 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:26:03 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 70 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:26:38 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:28:46 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 70 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:29:01 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 70 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:30:33 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 70 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:30:45 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 70 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:33:18 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 712 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:34:15 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 712 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:34:39 +0300] "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1" 200 756 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:37:07 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:37:49 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 742 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:40:15 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 742 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:40:36 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 9589 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:41:35 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 125 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:41:50 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 42 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:43:02 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 62 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:46:05 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 9589 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:55:07 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 742 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:55:44 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 742 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:56:10 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 500 1337 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:59:30 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 500 1272 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:11:59:45 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 62 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:01:40 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 127 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:07:58 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 500 1212 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:10:28 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 232 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:10:36 +0300] "GET /api/user-card/get-user-card?user_id= HTTP/1.1" 500 1312 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:11:25 +0300] "GET /api/user-card/get-user-card?user_id= HTTP/1.1" 500 174 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:11:36 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 232 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:11:41 +0300] "GET /api/user-card/get-user-card?user_id=1000 HTTP/1.1" 500 174 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:12:25 +0300] "GET /api/user-card/get-user-card?user_id=1000 HTTP/1.1" 500 174 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:12:40 +0300] "GET /api/user-card/get-user-card?user_id=1000 HTTP/1.1" 500 1315 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:12:46 +0300] "GET /api/user-card/get-user-card?user_id=10 HTTP/1.1" 200 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:12:51 +0300] "GET /api/user-card/get-user-card?user_id= HTTP/1.1" 500 1315 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:12:58 +0300] "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1" 200 232 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:24:20 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 401 27486 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:25:03 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:26:20 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:39:40 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:39:47 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 11 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:53:40 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:56:17 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:56:44 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:58:48 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:59:00 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 11 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:12:59:14 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:00:19 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:01:23 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:03:29 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 1382 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:05:37 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 1372 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:07:08 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 1382 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:07:46 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 1372 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:08:28 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 188 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:09:56 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 184 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:10:00 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:10:43 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:13:21 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:13:35 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 183 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:15:16 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:15:51 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:16:21 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 11 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:17:43 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:18:36 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:18:41 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:22:36 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 183 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:22:57 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:23:15 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:24:46 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:25:09 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 183 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:25:26 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:25:32 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:25:37 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:36:33 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 860 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:36:51 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 2929 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:37:04 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 2928 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:38:17 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 860 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /card/user-card/view?id=18 HTTP/1.1" 200 13256 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /knight.jpg HTTP/1.1" 404 12066 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:45:59 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:00 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:00 +0300] "GET /debug/default/toolbar?tag=623311671d205 HTTP/1.1" 200 3410 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:04 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 14693 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:04 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:04 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:04 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:04 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:04 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:04 +0300] "GET /debug/default/toolbar?tag=6233116c3fffe HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /questionnaire/user-questionnaire/update?id=1 HTTP/1.1" 200 13796 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/69f58a44/css/dependent-dropdown.css HTTP/1.1" 200 518 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/69f58a44/js/dependent-dropdown.js HTTP/1.1" 200 11899 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 200 16405 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/f3677068/js/depdrop.js HTTP/1.1" 200 986 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /debug/default/toolbar?tag=623311701e6ea HTTP/1.1" 200 3428 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:08 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:40 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 14691 "http://backend.guild.loc/card/user-card/view?id=18" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:40 +0300] "GET /debug/default/toolbar?tag=623311906f344 HTTP/1.1" 200 3427 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:45 +0300] "GET /questionnaire/user-questionnaire/view?id=2 HTTP/1.1" 200 13128 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:45 +0300] "GET /assets/9c1d1a99/jquery.pjax.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:45 +0300] "GET /debug/default/toolbar?tag=62331195a522a HTTP/1.1" 200 3422 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:49 +0300] "GET /questionnaire/user-questionnaire/update?id=2 HTTP/1.1" 200 13796 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:49 +0300] "GET /debug/default/toolbar?tag=623311997cf84 HTTP/1.1" 200 3419 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:52 +0300] "GET /assets/69f58a44/img/loading.gif HTTP/1.1" 200 1849 "http://backend.guild.loc/assets/69f58a44/css/dependent-dropdown.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:46:52 +0300] "POST /questionnaire/user-questionnaire/questionnaire HTTP/1.1" 200 230 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:00 +0300] "POST /questionnaire/user-questionnaire/update?id=2 HTTP/1.1" 302 5 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:00 +0300] "GET /questionnaire/user-questionnaire/view?id=2 HTTP/1.1" 200 13145 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:00 +0300] "GET /debug/default/toolbar?tag=623311a49c62e HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:00 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:05 +0300] "GET /questionnaire/user-questionnaire/update?id=2 HTTP/1.1" 200 13797 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:05 +0300] "GET /debug/default/toolbar?tag=623311a9b0f4e HTTP/1.1" 200 3419 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:14 +0300] "POST /questionnaire/user-questionnaire/questionnaire HTTP/1.1" 200 230 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:17 +0300] "POST /questionnaire/user-questionnaire/update?id=2 HTTP/1.1" 302 5 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:17 +0300] "GET /questionnaire/user-questionnaire/view?id=2 HTTP/1.1" 200 13148 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:17 +0300] "GET /debug/default/toolbar?tag=623311b54e746 HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:25 +0300] "GET /questionnaire/user-questionnaire/index HTTP/1.1" 200 14711 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:25 +0300] "GET /debug/default/toolbar?tag=623311bdb71c1 HTTP/1.1" 200 3427 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:47:26 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:48:28 +0300] "GET /questionnaire/answer HTTP/1.1" 200 16071 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:48:28 +0300] "GET /debug/default/toolbar?tag=623311fc7bbd2 HTTP/1.1" 200 3414 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:48:28 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:04 +0300] "GET /questionnaire/answer HTTP/1.1" 200 16040 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:04 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:04 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:04 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:04 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:04 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:04 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 200 7344 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 173566 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /debug/default/toolbar?tag=62331298cae49 HTTP/1.1" 200 3411 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:05 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:10 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 14707 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:10 +0300] "GET /debug/default/toolbar?tag=6233129e895b5 HTTP/1.1" 200 3427 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:10 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:44 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 13861 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:44 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:44 +0300] "GET /debug/default/toolbar?tag=623312c039152 HTTP/1.1" 200 3421 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:48 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 14707 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:48 +0300] "GET /debug/default/toolbar?tag=623312c435660 HTTP/1.1" 200 3429 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:50 +0300] "GET /questionnaire/user-questionnaire/view?id=2 HTTP/1.1" 200 13137 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:50 +0300] "GET /debug/default/toolbar?tag=623312c6bd62f HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:51:51 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /questionnaire/user-questionnaire/view?id=2 HTTP/1.1" 200 13147 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/9c1d1a99/jquery.pjax.js HTTP/1.1" 200 29273 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /debug/default/toolbar?tag=62331306046e8 HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:52:54 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:19 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 14706 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:20 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:20 +0300] "GET /debug/default/toolbar?tag=6233135bd5600 HTTP/1.1" 200 3429 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:20 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:22 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 13857 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:23 +0300] "GET /debug/default/toolbar?tag=6233135eda612 HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:29 +0300] "GET /questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5&_pjax=%23user_responses HTTP/1.1" 200 7165 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:29 +0300] "GET /questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13952 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:29 +0300] "GET /debug/default/toolbar?tag=62331365a8ec5 HTTP/1.1" 200 3424 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:29 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:39 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 13861 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:39 +0300] "GET /debug/default/toolbar?tag=6233136f5be41 HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:44 +0300] "GET /questionnaire/user-questionnaire/rate-responses?id=1 HTTP/1.1" 200 13863 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:45 +0300] "GET /debug/default/toolbar?tag=62331374acde7 HTTP/1.1" 200 3432 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:13:54:45 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /questionnaire/user-questionnaire/rate-responses?id=1 HTTP/1.1" 200 13860 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/9c1d1a99/jquery.pjax.js HTTP/1.1" 200 29273 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /debug/default/toolbar?tag=623315841afdd HTTP/1.1" 200 3432 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:03:32 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /questionnaire/user-questionnaire/rate-responses?id=1 HTTP/1.1" 200 13843 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/9c1d1a99/jquery.pjax.js HTTP/1.1" 200 29273 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /debug/default/toolbar?tag=623315a529fce HTTP/1.1" 200 3431 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:05 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:04:21 +0300] "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 401 27486 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:04:53 +0300] "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 358 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:08:45 +0300] "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 320 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5&_pjax=%23user_responses HTTP/1.1" 200 7165 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 13949 "http://backend.guild.loc/questionnaire/user-questionnaire/rate-responses?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 173566 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 200 7344 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /debug/default/toolbar?tag=623316c473c3e HTTP/1.1" 200 3424 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:52 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:57 +0300] "POST /questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 302 5 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:57 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 13873 "http://backend.guild.loc/questionnaire/user-response/update?id=218&user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:08:58 +0300] "GET /debug/default/toolbar?tag=623316c9ce140 HTTP/1.1" 200 3419 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0" +127.0.0.1 - - [17/Mar/2022:14:09:03 +0300] "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 358 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:13:51 +0300] "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 4976 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:14:07 +0300] "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 500 4956 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:14:22 +0300] "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 358 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:30:03 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:33:41 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:33:43 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:34:36 +0300] "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 36 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:34:46 +0300] "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1" 200 41 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [17/Mar/2022:14:40:27 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 1137 "-" "PostmanRuntime/7.28.4" diff --git a/frontend-error.log b/frontend-error.log index f622a3b..4f6bf6e 100644 --- a/frontend-error.log +++ b/frontend-error.log @@ -15414,3 +15414,124 @@ Stack trace: 2022/03/10 13:01:46 [error] 847#847: *690 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" 2022/03/10 13:01:46 [error] 847#847: *690 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" 2022/03/10 13:01:46 [error] 847#847: *690 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6229cc8a610e3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/" +2022/03/17 11:05:53 [error] 831#831: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:07:15 [error] 831#831: *3 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:09:18 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:09:26 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:09:47 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:10:06 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:10:08 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:10:37 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:10:50 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:11:21 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:11:28 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:11:53 [error] 831#831: *5 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:13:03 [error] 831#831: *16 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:13:05 [error] 831#831: *16 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:13:23 [error] 831#831: *16 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:17:08 [error] 831#831: *20 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:19:13 [error] 831#831: *22 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:19:28 [error] 831#831: *22 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:20:31 [error] 831#831: *22 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:22:04 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:22:36 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:23:05 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:23:06 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:23:07 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:23:45 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:24:13 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:24:24 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:24:42 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:24:59 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:25:19 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:25:20 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:25:43 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:25:54 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:26:03 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:26:38 [error] 831#831: *26 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:28:46 [error] 831#831: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:29:01 [error] 831#831: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:30:33 [error] 831#831: *46 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:30:45 [error] 831#831: *46 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:33:18 [error] 831#831: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:34:15 [error] 831#831: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:34:39 [error] 831#831: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:37:07 [error] 831#831: *53 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:37:49 [error] 831#831: *53 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:40:15 [error] 831#831: *56 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:40:36 [error] 831#831: *56 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:41:35 [error] 831#831: *56 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:41:50 [error] 831#831: *56 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:43:02 [error] 831#831: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:46:05 [error] 831#831: *63 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:55:07 [error] 831#831: *65 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:55:44 [error] 831#831: *65 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:56:10 [error] 831#831: *65 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:59:30 [error] 831#831: *69 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 11:59:45 [error] 831#831: *69 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:01:40 [error] 831#831: *72 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:07:58 [error] 831#831: *74 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:10:28 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:10:36 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id= HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:11:25 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id= HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:11:36 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:11:41 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1000 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:12:25 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1000 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:12:40 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1000 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:12:46 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=10 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:12:51 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id= HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:12:58 [error] 831#831: *76 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-card/get-user-card?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:24:20 [error] 831#831: *87 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:25:03 [error] 831#831: *87 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:26:20 [error] 831#831: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:39:40 [error] 831#831: *92 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:39:47 [error] 831#831: *92 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:53:40 [error] 831#831: *95 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:56:17 [error] 831#831: *97 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:56:44 [error] 831#831: *97 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:58:48 [error] 831#831: *100 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:59:00 [error] 831#831: *100 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 12:59:14 [error] 831#831: *100 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:00:19 [error] 831#831: *104 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:01:23 [error] 831#831: *104 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:03:29 [error] 831#831: *107 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:05:37 [error] 831#831: *109 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:07:08 [error] 831#831: *111 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:07:46 [error] 831#831: *111 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:08:28 [error] 831#831: *111 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:09:56 [error] 831#831: *115 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d002f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:10:00 [error] 831#831: *115 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:10:43 [error] 831#831: *115 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:13:21 [error] 831#831: *119 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:13:35 [error] 831#831: *119 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:15:16 [error] 831#831: *122 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:15:51 [error] 831#831: *122 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:16:21 [error] 831#831: *122 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:17:43 [error] 831#831: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:18:36 [error] 831#831: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:18:41 [error] 831#831: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:22:36 [error] 831#831: *130 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:22:57 [error] 831#831: *130 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:23:15 [error] 831#831: *130 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:24:46 [error] 831#831: *134 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:25:09 [error] 831#831: *134 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:25:26 [error] 831#831: *134 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:25:32 [error] 831#831: *134 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:25:37 [error] 831#831: *134 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:36:33 [error] 831#831: *140 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:36:51 [error] 831#831: *140 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:37:04 [error] 831#831: *140 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 13:38:17 [error] 831#831: *144 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:04:21 [error] 831#831: *230 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:04:53 [error] 831#831: *230 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:08:45 [error] 831#831: *233 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:09:03 [error] 831#831: *233 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:13:51 [error] 831#831: *247 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:14:07 [error] 831#831: *247 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:14:22 [error] 831#831: *247 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaire-completed?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:30:03 [error] 831#831: *251 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:33:41 [error] 831#831: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:33:43 [error] 831#831: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:34:36 [error] 831#831: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-points-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:34:46 [error] 831#831: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/get-question-number?user_questionnaire_uuid=d222f858-60fd-47fb-8731-dc9d5fc384c5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2022/03/17 14:40:27 [error] 831#831: *258 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 102PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 103" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" diff --git a/frontend/modules/api/controllers/UserCardController.php b/frontend/modules/api/controllers/UserCardController.php new file mode 100644 index 0000000..bdbebdd --- /dev/null +++ b/frontend/modules/api/controllers/UserCardController.php @@ -0,0 +1,24 @@ + ['get'], + ]; + } + + /** + * @throws ServerErrorHttpException + */ + public function actionGetUserCard($user_id): array + { + return UserCardService::getUserCard($user_id); + } +} \ No newline at end of file diff --git a/frontend/modules/api/controllers/UserQuestionnaireController.php b/frontend/modules/api/controllers/UserQuestionnaireController.php index 4dfe8cd..3a2c875 100644 --- a/frontend/modules/api/controllers/UserQuestionnaireController.php +++ b/frontend/modules/api/controllers/UserQuestionnaireController.php @@ -43,4 +43,28 @@ class UserQuestionnaireController extends ApiController } return $userQuestionnaireModel; } + + /** + * @throws ServerErrorHttpException + */ + public function actionGetPointsNumber($user_questionnaire_uuid) + { + $questionPointsNumber = UserQuestionnaireService::getPointsNumber($user_questionnaire_uuid); + if (empty($questionPointsNumber)) { + throw new ServerErrorHttpException(json_encode('Question points not found!')); + } + return $questionPointsNumber; + } + + /** + * @throws ServerErrorHttpException + */ + public function actionGetQuestionNumber($user_questionnaire_uuid) + { + $questionNumber = UserQuestionnaireService::getQuestionNumber($user_questionnaire_uuid); + if (empty($questionNumber)) { + throw new ServerErrorHttpException(json_encode('Question number not found!')); + } + return $questionNumber; + } }