No products in the cart.
Forum Replies Created
Viewing 1 post (of 1 total)
- AuthorPosts
-
May 17, 2021 at 4:48 am in reply to: #1273 – Unknown collation: ‘utf8mb4_unicode_520_ci’ #10680
hexhad
Participant1273 – Unknown collation: ‘utf8mb4_unicode_520_ci’
in my case I was unable to import DB using
ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8 COLLATE = utf8_general_ci;
and
ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_520_ci;
both. But changing it to this in .SQL File resolved the problem
ENGINE=InnoDB DEFAULT CHARSET=latin1;
UPDATED
using ‘utf8mb4_general_ci‘resolved the problem
ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;
- AuthorPosts
Viewing 1 post (of 1 total)