![]() |
Bug: during migration from VHCS to ISPCP language table is not created - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: Migration (/forum-35.html) +--- Thread: Bug: during migration from VHCS to ISPCP language table is not created (/thread-4123.html) |
Bug: during migration from VHCS to ISPCP language table is not created - nicolas - 08-26-2008 06:45 PM Title says it all. I have migrated a VHCS database to IPSCP and noticed the language table is not created. I have had to create it manually (found script in configs/ubuntu/database/languages.sql ): DROP TABLE IF EXISTS `lang_EnglishBritain`; CREATE TABLE `lang_EnglishBritain` ( `msgid` text collate utf8_unicode_ci, `msgstr` text collate utf8_unicode_ci, KEY msgid (msgid(25)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- data for table `lang_EnglishBritain` -- INSERT INTO `lang_EnglishBritain` (`msgid`, `msgstr`) VALUES ('ispcp_languageSetlocaleValue', 'en_GB'), ('ispcp_table', 'EnglishBritain'), ('ispcp_language', 'English (GB)'), ('encoding', 'UTF-8'), ('Incorrect domain name syntax', 'Incorrect <i>domain name</i> syntax'), ('Incorrect forward syntax', 'Incorrect <i>forward</i> syntax!'), ('Incorrect mount point syntax', 'Incorrect <i>mount point</i> syntax!'), ('Mail', 'e-mail'); |