• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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