Hi Daniel, not sure if you're aware, but Ray sadly passed away in 2023 and there is no new development being done on the WebAssist code. The forums are now running peer-to-peer help only. The error message means you're running old mySQL code, which was deprecated in PHP 5.3 and removed completely in PHP7, so it will not run on PHP8.3. If you can roll back to an older PHP version that supports mySQL, it would run however it's definitely not advisable as older versions aren't supported and are also a big security risk. The correct thing to do is update your code to mySQLi - you can do this using the free mySQLi extension available on this site. It will first update your Connections file but you will then need to open every page which currently uses mySQL server behaviors, double-click every recordset and server behavior i.e. Insert, Update, Delete etc, then click OK and the code will be updated for you. You need to do this on every page and check the pages as you go to make sure they work and if not, turn on error reporting so you can see what the issue is. It's time consuming but it works!


