Languages: English (English )German (Deutsch )French (Français )
Timezone: Europe/Zagreb (GMT+02:00)
If the plugin fails, please try this:
1. Backup Your Database: Before making any changes, it's essential to create a backup of your WordPress database to avoid any potential data loss.
2. Identify the Affected Tables: The error message mentions several tables such as `zvTrqHjYi_term_relationships`, `zvTrqHjYi_term_taxonomy`, `zvTrqHjYi_icl_translations`, and `zvTrqHjYi_posts`. You will need to examine these tables to determine which columns have collation mismatches.
3. Change Collation: You can change the collation of specific columns in the affected tables to match the desired collation (`utf8mb4_unicode_520_ci` in most cases since it's recommended for WordPress).
Here's a general SQL query template to change the collation of a column:
ALTER TABLE table_name MODIFY column_name VARCHAR(length) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;
Replace `table_name` with the actual table name, `column_name` with the name of the column with the collation mismatch, and `length` with the appropriate length for your column.
For example, if you want to change the collation of the `my_column` column in the `my_table` table:
ALTER TABLE my_table MODIFY my_column VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci;
Repeat this process for any other tables or columns mentioned in the error message that have collation mismatches.
4. Check the WordPress Configuration: Ensure that your WordPress configuration (`wp-config.php`) has the correct database character set and collation settings. You should have the following lines in your `wp-config.php`:
Make sure these settings match the collation you've set in your database.
5. Test Your Website: After making these changes, test your WordPress website to ensure that the error is resolved and that your site functions correctly.
Remember to always back up your database before making any changes, as altering the database structure can have consequences if done incorrectly.
We use cookies to optimize our website and services. Your consent allows us to process data such as browsing behavior. Not consenting may affect some features.
Functional
Always active
Required for our website to operate and communicate correctly.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
We use these to analyze the statistics of our site. Collected information is completely anonymous.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
These cookies track your browsing to provide ads relevant to you.