• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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