Upgrade Error 2.5.2

Post Reply
rmcdonald
Investor
Investor
Posts: 417
Joined: 19 Dec 2018, 02:33
Name: Robert McDonald
Location: Auckland, New Zealand
Company Name: Unicloud
Contact:

Upgrade Error 2.5.2

Post 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/
User avatar
support
Site Admin
Posts: 6215
Joined: 19 Oct 2014, 18:22
Name: Sergey Kharchishin
Location: Russia, Evpatoriya

Re: Upgrade Error 2.5.2

Post by support »

You did not update database.
rmcdonald
Investor
Investor
Posts: 417
Joined: 19 Dec 2018, 02:33
Name: Robert McDonald
Location: Auckland, New Zealand
Company Name: Unicloud
Contact:

Re: Upgrade Error 2.5.2

Post 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
User avatar
support
Site Admin
Posts: 6215
Joined: 19 Oct 2014, 18:22
Name: Sergey Kharchishin
Location: Russia, Evpatoriya

Re: Upgrade Error 2.5.2

Post 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;
angela.w
Posts: 1
Joined: 28 Sep 2019, 05:59
Name: Angela Walters
Location: Brisbane Australia
Company Name: Vizability
Contact:

Re: Upgrade Error 2.5.2

Post 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....
User avatar
support
Site Admin
Posts: 6215
Joined: 19 Oct 2014, 18:22
Name: Sergey Kharchishin
Location: Russia, Evpatoriya

Re: Upgrade Error 2.5.2

Post 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.
Post Reply