Jump to content

Ошибка при обновлении IPS 4.7.9

Featured Replies

Столкнулся с такой ошибкой при обновлении форума, может кто сталкивался с такой ошибкой или может помочь.

Unknown column 'forums_topics.publish_date' in 'where clause'
/var/www/www-root/data/www/site.ru/system/Db/Select.php::446
SELECT * FROM `cs_forums_topics` AS `forums_topics` WHERE forums_topics.forum_id=? AND forums_topics.approved=1 AND forums_topics.state != ? AND forums_topics.last_post<=? AND forums_topics.publish_date <=? ORDER BY forums_topics.last_post DESC LIMIT 1

 

Link to comment
https://ipbmafia.ru/topic/25563-oshibka-pri-obnovlenii-ips-479/
Share on other sites
1 час назад, bon1 сказал:

Столкнулся с такой ошибкой при обновлении форума, может кто сталкивался с такой ошибкой или может помочь.

Unknown column 'forums_topics.publish_date' in 'where clause'
/var/www/www-root/data/www/site.ru/system/Db/Select.php::446
SELECT * FROM `cs_forums_topics` AS `forums_topics` WHERE forums_topics.forum_id=? AND forums_topics.approved=1 AND forums_topics.state != ? AND forums_topics.last_post<=? AND forums_topics.publish_date <=? ORDER BY forums_topics.last_post DESC LIMIT 1

 

Ну как сказано, в твоей таблице cs_forums_topics отсутствует столбец publish_date.

Link to comment
https://ipbmafia.ru/topic/25563-oshibka-pri-obnovlenii-ips-479/?&do=findComment&comment=192688
Share on other sites

Добавить в таблицу "cs_forums_topics" столбец "publish_date". Если столбец уже есть, проверить правильность написания его имени в запросе.

Link to comment
https://ipbmafia.ru/topic/25563-oshibka-pri-obnovlenii-ips-479/?&do=findComment&comment=192692
Share on other sites
ALTER TABLE forums_topics ADD `publish_date` int(10) unsigned NOT NULL DEFAULT '0';

Про префикс таблиц не забываем конечно же.

Link to comment
https://ipbmafia.ru/topic/25563-oshibka-pri-obnovlenii-ips-479/?&do=findComment&comment=192698
Share on other sites

ALTER TABLE cs_forums_topics ADD COLUMN publish_date DATE;

или

ALTER TABLE cs_forums_topics ADD publish_date DATETIME;

 

Edited by Zero108

Link to comment
https://ipbmafia.ru/topic/25563-oshibka-pri-obnovlenii-ips-479/?&do=findComment&comment=192699
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

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

  • No registered users viewing this page.