MySQL database converted to MariaDB automatically [duplicate]

Our company has a pretty old app built on php 5.6 and mysql. We recently decided to make some changes and change where its hosted. Though migration process with a tad bit of a pain, it went well for the most part.

The new host provider uses MariaDB instead of MySQL. The entire app works fine, except one part. This part is basically access profile data from the database. It gives the following error when we click on ‘My Profile’ –

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘offset asc, gmt asc’ at line 1.

We don’t know what version of MariaDB is needed because there’s no way to tell. Everything worked fine when we were using MySQL.

Any feedback would be greatly appreciated. TIA.

We are not sure where to begin because the php code doesn’t list any reference to MariaDB version.

  • 4

    Please include the relevant part of the failing query in your question. Also add the version of MariaDB that you are using.

    – 

  • 1

    The bug you describe is the least of your problems. You are using a version of PHP that was end of life on December 31st, 2018. Let that sink in. Sure it’s probably the syntax error, but there could be any number of other issues in the code that you haven’t hit.

    – 




Leave a Comment