SME DB Import Issue
1)Open the SQL Dump file and replace these character
utf8mb4_0900_ai_ci ===> utf8mb4_unicode_ci
2)Run these two commands in Phpmyadmin
Without restarting the server setting
SET GLOBAL innodb_strict_mode = 0;
and
SET innodb_strict_mode = 0;
worked for me
Comments
Post a Comment