我正在尝试将WordPress数据库从本地上传到托管网站。首先,我通过将utf8mb4
替换为utf8
来解决此问题,因为您可以在this link查看错误。
现在我收到以下问题:
Error
SQL query:
--
-- Database: `blogpost`
--
-- --------------------------------------------------------
--
-- Table structure for table `wp_commentmeta`
--
CREATE TABLE `wp_commentmeta` (
`meta_id` BIGINT( 20 ) UNSIGNED NOT NULL ,
`comment_id` BIGINT( 20 ) UNSIGNED NOT NULL DEFAULT '0',
`meta_key` VARCHAR( 255 ) COLLATE utf8_unicode_ci DEFAULT NULL ,
`meta_value` LONGTEXT COLLATE utf8_unicode_ci
) ENGINE = INNODB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
MySQL said: Documentation
#1142 - CREATE command denied to user 'blogsit_admin'@'localhost' for table 'wp_commentmeta'
如何解决这个问题?