Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Добрый вечер,помогите пожалуйста решить проблему.


Recommended Posts

Добрый вечер,помогите пожалуйста решить проблемы.после обновление выбивает вот такие ошибки

Код ошибки(0): Error: Table ' mili-tant.oc_url_alias' doesn't exist
Error No: 1146
SELECT * FROM `oc_url_alias` в D:\OSPanel\domains\mili-tant\system\library\db\mysqli.php строке 41

Link to comment
Share on other sites


03.04.2023 в 20:52, militant сказал:

Код ошибки(0): Error: Table ' mili-tant.oc_url_alias' doesn't exist

Или слетела таблица, или нестыковка версии.

Link to comment
Share on other sites

Вы пытаетесь обновить версию. Если так, добавьте в вашу Бд эту таблицу


 

DROP TABLE IF EXISTS `oc_url_alias`;
CREATE TABLE `oc_url_alias` (
  `url_alias_id` int(11) NOT NULL AUTO_INCREMENT,
  `query` varchar(255) NOT NULL,
  `keyword` varchar(255) NOT NULL,
  PRIMARY KEY (`url_alias_id`),
  KEY `query` (`query`),
  KEY `keyword` (`keyword`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.