Диагностика системы Flikk CMS
| Параметр | Значение | Статус |
|---|---|---|
| PHP версия | 8.3.6 | ✓ |
| Подключение к PostgreSQL | Успешно | ✓ |
| Название сайта | Flikk Site | ✓ |
| Тема оформления | flikk | ✓ |
| Режим отладки | Включен | ✓ |
| Сессия | ID: 978vgcc2n22e6l7mof63j0qip3 | ✓ |
| Проверка таблиц | Ошибка: SQLSTATE[42501]: Insufficient privilege: 7 ERROR: permission denied for table flikk_iblock_types | ✗ |
| Метод iblock/getList | Ошибка: SQLSTATE[42501]: Insufficient privilege: 7 ERROR: permission denied for table flikk_iblocks | ✗ |
| Метод element/getList | Ошибка: SQLSTATE[42501]: Insufficient privilege: 7 ERROR: permission denied for table flikk_elements | ✗ |
Тест компонента news.list
Ошибка: SQLSTATE[42501]: Insufficient privilege: 7 ERROR: permission denied for table flikk_elements
Структура файлов
flikk/
├── admin
│ ├── ai_chat.php
│ ├── ai_chat_old.php
│ ├── ai_logs.php
│ ├── ai_projects.php
│ ├── ai_settings.php
│ ├── ai_tasks.php
│ ├── ai_telegram.php
│ ├── ai_tg_accounts.php
│ ├── calculator.php
│ ├── calculator_packages.php
│ ├── calculator_tasks.php
│ ├── calculator_test.php
│ ├── content.php
│ ├── elements.php
│ ├── groups.php
│ ├── iblocks.php
│ ├── index.php
│ ├── login.php
│ ├── login_as.php
│ ├── login_back.php
│ ├── logout.php
│ ├── sections.php
│ ├── settings.php
│ ├── structure.php
│ └── users.php
├── components
│ ├── flikk
│ │ ├── news.detail
│ │ │ ├── .default
│ │ │ │ └── template.php
│ │ │ └── class.php
│ │ └── news.list
│ │ ├── .default
│ │ │ └── template.php
│ │ └── class.php
│ └── flikk_admin
│ └── {users.list,users.edit,groups.list,groups.edit,iblocks.list,iblocks.edit,sections.list,sections.edit,elements.list,elements.edit,settings}
│ └── .default
├── config
│ ├── config.example.php
│ └── config.php
├── footer.php
├── header.php
├── install
│ ├── index.php
│ ├── migration_001_images_seo.sql
│ ├── migration_002_property_enums.sql
│ ├── migration_ai_projects.sql
│ ├── migration_ai_projects_patch1.sql
│ ├── migration_ai_settings.sql
│ ├── migration_ai_tasks.sql
│ ├── migration_ai_telegram.sql
│ ├── migration_ai_telegram_patch1.sql
│ ├── migration_ai_telegram_patch2.sql
│ ├── migration_ai_tg_patch3.sql
│ ├── migration_ai_tg_userbot.sql
│ ├── migration_v2.sql
│ └── schema.sql
├── methods
│ ├── ai_project
│ │ ├── add.php
│ │ ├── delete.php
│ │ ├── getById.php
│ │ ├── getCount.php
│ │ ├── getList.php
│ │ └── update.php
│ ├── ai_settings
│ │ └── getAll.php
│ ├── ai_tasks
│ │ └── crud.php
│ ├── ai_telegram
│ │ ├── dialogs.php
│ │ └── getList.php
│ ├── ai_tg
│ │ ├── accounts.php
│ │ ├── clients.php
│ │ └── messages.php
│ ├── calculator
│ │ ├── calculate.php
│ │ ├── getCategories.php
│ │ ├── getStructure.php
│ │ └── getTasks.php
│ ├── element
│ │ ├── add.php
│ │ ├── delete.php
│ │ ├── getById.php
│ │ ├── getCount.php
│ │ ├── getList.php
│ │ └── update.php
│ ├── group
│ │ ├── add.php
│ │ ├── delete.php
│ │ ├── getById.php
│ │ ├── getCount.php
│ │ ├── getList.php
│ │ └── update.php
│ ├── iblock
│ │ ├── add.php
│ │ ├── delete.php
│ │ ├── getById.php
│ │ ├── getCount.php
│ │ ├── getList.php
│ │ └── update.php
│ ├── property
│ │ ├── add.php
│ │ ├── delete.php
│ │ ├── getById.php
│ │ ├── getList.php
│ │ └── update.php
│ ├── section
│ │ ├── add.php
│ │ ├── delete.php
│ │ ├── getById.php
│ │ ├── getCount.php
│ │ ├── getList.php
│ │ └── update.php
│ ├── stats
│ │ ├── getDashboard.php
│ │ └── getRecentElements.php
│ └── user
│ ├── add.php
│ ├── authorize.php
│ ├── check.php
│ ├── delete.php
│ ├── getById.php
│ ├── getCount.php
│ ├── getList.php
│ ├── loginAs.php
│ ├── setGroups.php
│ └── update.php
├── modules
│ ├── ai
│ │ ├── .installed
│ │ ├── bootstrap.php
│ │ ├── claude.php
│ │ └── task_worker.php
│ ├── ai_tg
│ │ ├── MadelineProto.log
│ │ ├── daemon.php
│ │ ├── handler.php
│ │ ├── handler_old.php
│ │ ├── orchestrator.php
│ │ ├── tg_auth_cli.php
│ │ └── tg_auth_phone.php
│ └── sys
│ ├── component.php
│ ├── config.php
│ ├── db.php
│ ├── methods.php
│ ├── request.php
│ └── session.php
├── prolog.php
├── prolog_after.php
├── prolog_before.php
└── templates
├── flikk
│ ├── footer.php
│ └── header.php
├── flikk_admin
│ ├── footer.php
│ └── header.php
└── page.template.php