Hi all
I exported the database of my backdrop cms using "Backup-migrate". Everything okay, no error.
Now I import this database to the destination cms, also using the "back-up-migrate" tool. I do not receive any error, everything okay.
Both installations on version 1.30.2 all caches cleared.
When I log in as an admin I have an error in the status report:

Using the link I have this message:

And pushing the button I get the following error message:

I tried to convert the database with a php/SQL script, imported the database in a newly created utf8mb4 format database - it did NOT help.
My questions:
Why is a conversion mandatory? As I understood the formats are downwards compatible - so no reason to convert.
What is the SQL error and where can I fix it?
What is the best solution / work around to get my site up and running?
Many thanks for your help!
Cheers, Rolf
And here the info of the exporting cms:

And the importing CMS:

I wonder if what is happening here is the default database settings are for
utf8mb4
if the database server supports it.In
settings.php
orsettings.local.php
if that's where you put your database settings you may have settings that look like:if you add in
charset
andcollation
then it may stop nagging you to convert. So your new settings would look something like:Those are fallback settings it
utf8mb4
isn't supported.To go back to your questions:
With both of those, include as much detail as possible including Backdrop versions, database server versions and other environment information.
There is also a recently added conversion tool within Bee - see https://github.com/backdrop-contrib/bee/wiki/Usage#utf8mb4-convert - though this is based on the core methods so you may not notice any difference.