Posted 23 апреля, 20231 yr comment_192681 Столкнулся с такой ошибкой при обновлении форума, может кто сталкивался с такой ошибкой или может помочь. 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 Больше вариантов
23 апреля, 20231 yr comment_192688 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 Больше вариантов
23 апреля, 20231 yr comment_192692 Добавить в таблицу "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 Больше вариантов
24 апреля, 20231 yr comment_192698 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 Больше вариантов
24 апреля, 20231 yr comment_192699 ALTER TABLE cs_forums_topics ADD COLUMN publish_date DATE; или ALTER TABLE cs_forums_topics ADD publish_date DATETIME; Edited 24 апреля, 20231 yr 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.