Here is the situation: A long neglected web app on a shared hosted server, I need to update the web app and need certain upgrades to make this happen. PHP needs to be upgraded to v8.2, this I can do. I also need MySQL updated to v8.0+.
The original database is on MySQL v5.0 and there is no tool available to me to upgrade it. Also the old web app won’t run on a higher version of PHP than 7.0, so I can’t just open the two versions of the web app and manually duplicate as much of the configuration as possible. I’m not too worried about the user data, that changes pretty much every year, but the config data is what I really want.
I’ve tried exporting the db, making a new db with a different name and user account, then importing that data into the new db. It keeps throwing errors.
I’ve edited a few lines in this export to match the new db name, but get other errors and a partial import.
Kind of stuck right now in trying to save this data. I installed MySQLworkbench CE, but need to read through the user guide to try and figure out what I need to do. It looks like I may need to connect to both remote db to migrate from one to the other and change any version variables in the process, but just a guess.
My ultimate least favored plan is to start from scratch, which may be the best choice in terms of time messing around. Thought I would ask and see if anyone has an idea to try.