Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • blankhexhad
    Participant

    1273 – 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;
    
Viewing 1 post (of 1 total)