Mariadb INSERT problem

In new versions of mariadb there is no mod NO_ENGINE_SUBSTITUTION

This means that when you add records using insert to the mysql database, you will not get anything.
You won’t even get an error because your request will return true.

Because of this, many functions of your site may not work. You need to understand this and either write queries to all fields in the database, or install a mod NO_ENGINE_SUBSTITUTION.

The easiest way to do this:
File my.cnf can be found in /etc/my.cnf or /etc/mysql/my.cnf

In this file add:
sql-mode = NO_ENGINE_SUBSTITUTION

And restart mysql (mariadb)

Perhaps the developers of the panel should add such a function. Of course, at their discretion.