• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Help: need 'ControlVisibility' mysql dump

littlefrog

Regular Pleskian
Can someone provide me the dump of the ControlVisibility table.

When i updated ot the new version of plesk for some reason this table was not added to the mysql db and now i can not sign into plesk.

I know double post but i needed to start new thread.

Can someone post the .sql file in here of the ControlVisibility table in the PSA db so i can import it.
 
MySQL 4.1 - psa.ControlVisibility Dump:

Code:
--
-- Table structure for table `ControlVisibility`
--

DROP TABLE IF EXISTS `ControlVisibility`;
CREATE TABLE `ControlVisibility` (
  `page` varchar(127) NOT NULL default '',
  `control` varchar(127) NOT NULL default '',
  `state` enum('hide','adminOnly','show') NOT NULL default 'hide',
  `control_type` enum('button','formControl') NOT NULL default 'button',
  PRIMARY KEY  (`page`,`control`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
 
Back
Top