user7592255
user7592255

Reputation: 101

utf8mb4_unicode_520_ci error when importing DB

I exported a WordPress database from Sequel Pro and when trying to import it, I get this error:

Unknown collation: 'utf8mb4_unicode_520_ci'

I checked this similar question and did these steps:

How can I successfully import this sql database ?

Upvotes: 2

Views: 10610

Answers (1)

Ritz Cool
Ritz Cool

Reputation: 416

The same thing occurred to me, when i was importing local wordpress database to server.

Open the sql dump in text editor and set

CHARSET to utf8mb4

and

COLLATE to utf8mb4_unicode_ci

Upvotes: 3

Related Questions