No products in the cart.
Forum Replies Created
Viewing 1 post (of 1 total)
- AuthorPosts
-
July 3, 2017 at 3:21 am in reply to: #1273 – Unknown collation: ‘utf8mb4_unicode_520_ci’ #10699
sherylhohman
ParticipantIn my case it turns out my
new server was runningMySQL 5.5
,
old server was runningMySQL 5.6
.
So I got this error when trying to import the.sql
file I’d exported from my old server.MySQL 5.5 does not support
utf8mb4_unicode_520_ci
, but
MySQL 5.6 does.Updating to
MySQL 5.6
on the new server solved collation the error !If you want to retain MySQL 5.5, you can:
– make a copy of your exported.sql
file
– replace instances ofutf8mb4unicode520_ci
andutf8mb4_unicode_520_ci
…withutf8mb4_unicode_ci
– import your updated.sql
file. - AuthorPosts
Viewing 1 post (of 1 total)