• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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