Page 1 of 1

Upgrade Error 2.5.2

Posted: 09 Sep 2019, 01:44
by rmcdonald
Hi I just upgraded and I am now getting the following error

Database Error: 1146 - Table 'unicloudco_ows7hef.app_ext_processes_buttons_groups' doesn't exist
Query: select * from app_ext_processes_buttons_groups where entities_id='47' and find_in_set('menu_with_selected',button_position) order by sort_order, name
Page: /demo/index.php?module=dashboard/

Re: Upgrade Error 2.5.2

Posted: 09 Sep 2019, 07:36
by support
You did not update database.

Re: Upgrade Error 2.5.2

Posted: 25 Sep 2019, 02:14
by rmcdonald
I thought there was no database update from 2.5 to 2.5.2 ?

If so what do we need to do to run it ? I can only find the 2.4 instructions

Re: Upgrade Error 2.5.2

Posted: 25 Sep 2019, 08:47
by support
Then this table was not create before. Just run next query in php my admin

Code: Select all

CREATE TABLE IF NOT EXISTS `app_ext_processes_buttons_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `entities_id` int(11) NOT NULL,
  `name` varchar(64) NOT NULL,
  `button_color` varchar(7) NOT NULL,
  `button_icon` varchar(64) NOT NULL,
  `button_position` varchar(64) NOT NULL,
  `sort_order` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_entities_id` (`entities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Re: Upgrade Error 2.5.2

Posted: 28 Sep 2019, 06:05
by angela.w
If I have installed Rukovoditel on my PC can you tell me how to update that version please? I don't have PHP My Admin....

Re: Upgrade Error 2.5.2

Posted: 28 Sep 2019, 07:33
by support
Update instruction here https://www.rukovoditel.net/new_release.php?version=2.5
You don't have to use phpmyadmin during update process.