Wordpress导入数据库 - 拒绝用户的CREATE命令

时间:2016-11-04 18:24:10

标签: php mysql database wordpress

我正在尝试将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' 

如何解决这个问题?

0 个答案:

没有答案