Jump to content

Удаление пользователя

Featured Replies

Добрый день.Такая проблема, при попытке удалить пользователя из АЦ пишет "Возникла ошибка при работе с базой данных".

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/
Share on other sites

Содержимое ошибки записано в файле *latest.cgi в папке cache

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16220
Share on other sites

Спс, посмотрю!

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16226
Share on other sites

Вот данный текст ошибки

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Date: Wed, 05 Dec 2012 18:21:14 +0000 Error: 1146 - Table 'bvv93135_1.kk_mobile_notifications' doesn't exist IP Address: 178.34.68.158 - /admin/index.php?adsess=a3320609b95fbc8c2c4e5d936e92bb70&app=members&app=members&module=members§ion=members&do=member_delete&member_id=208 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- mySQL query error: DELETE FROM kk_mobile_notifications WHERE member_id IN (208) .--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------. | File | Function | Line No. | |----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------| | admin/sources/base/ipsMember.php | [db_main_mysql].delete | 1598 | '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------' | admin/applications/members/modules_admin/members/members.php | [iPSMember].remove | 1321 | '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------' | admin/applications/members/modules_admin/members/members.php | [admin_members_members_members]._memberDelete | 139 | '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------' | admin/sources/base/ipsController.php | [admin_members_members_members].doExecute | 306 | '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------'

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16227
Share on other sites

Сделать запрос в базу:

CREATE TABLE ibf_mobile_notifications (
  id int(10) unsigned NOT NULL AUTO_INCREMENT,
  notify_title text NOT NULL,
  notify_date int(10) unsigned NOT NULL,
  member_id mediumint(8) unsigned NOT NULL,
  notify_sent tinyint(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (id),
  UNIQUE KEY id (id)
);
Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16229
Share on other sites

Получилось это:

#1046 - No database selected

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16230
Share on other sites

Не правильно запрос делаешь. Делай в админке и поставь свой префикс.

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16233
Share on other sites

Подскажите где делать запрос в АЦ, не могу найти

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16235
Share on other sites

Поддержка --> Управление SQL --> Инструменты управления SQL

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16236
Share on other sites

Еще вариант:

Админка - Поддержка - Проверка базы

Принять предложения по автоматическому восстановлению (красного цвета).

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16237
Share on other sites
Запрос в АЦ выполнил, он выдал:
 
Ошибка
Table 'ibf_mobile_notifications' already exists
Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16240
Share on other sites

Ошибка после этого не исчезла?

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16272
Share on other sites

Ошибка Table 'ibf_mobile_notifications' already exists

и поставь свой префикс.

Префикс то не сменил.
Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16275
Share on other sites

Префикс это изменить  'ibf_ на любое другое?

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16276
Share on other sites

Да, ibf_ это префикс, поменять его нужно на свой. В твоём случае на kk

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16283
Share on other sites

Подскажите где надо изменить (в админке?)  префикс, не могу найти где изменить!

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16284
Share on other sites

В запросе, то есть выполни запрос:

CREATE TABLE kk_mobile_notifications (
  id int(10) unsigned NOT NULL AUTO_INCREMENT,
  notify_title text NOT NULL,
  notify_date int(10) unsigned NOT NULL,
  member_id mediumint(8) unsigned NOT NULL,
  notify_sent tinyint(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (id),
  UNIQUE KEY id (id)
);

 

После этого ошибка должна исчезнуть.

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16285
Share on other sites

Спасибо вам большое!!!Все получилось ошибка исчезла!

Link to comment
https://ipbmafia.ru/topic/2440-udalenie-polzovatelya/?&do=findComment&comment=16286
Share on other sites
Guest
This topic is now closed to further replies.

Последние посетители 0

  • No registered users viewing this page.