i’m using docker on suselinux, doing development with version 7.01
i turned on debug logging and also looked at the default code_type in config/billing (from memory), and I am now getting every screen filled with this message, repeated to fill the screen and more, which makes doing anything, even logging on, impossible.
I do have access to the DB via phpMyadmin, but don’t know what i’m looking for
Deprecated: Creation of dynamic property ADORecordSet_mysqli::$adodbFetchMode is deprecated in /var/www/localhost/htdocs/openemr/vendor/adodb/adodb-php/drivers/adodb-mysqli.inc.php on line 1513
p.s. - i tried to turn off debug logging from the DB but don’t know which table this is set in ? if anyone can tell me i can try this so at least i can log in and use the system
Right, php.ini is in the docker so have to log in there and manually edit and restart the docker or you can edit the composer.json and update composer inside of the docker.
There won’t be a fix from the ado project because this used to be a warning and has now turned into an error.
Eventually it will turn into a hard fail so we need to fix.
The fix is we need to define the server parameter on database init. Currently because it is not set we get this error.
For now the only solution is as Stephen has suggested, ignore deprecated errors in php.ini.
i did find a php.ini in openemr/cli/nginx-82 which had a modification time and date about the time i made the config change, i added in not to report the deprecated error messages
ok nice, if you have anything in your test environment you can backup it up with the openemr-cmd capsule management and then update your rel-701 environment and rebuild the dockers since it will have the updated adodb package. Then you can bring your capsule back in…
jerry made the comment below, so will an updated adodb package make any difference? and which is the latest adodb package, as i already had version 5.22.5 installed (i think) - but happy to try this if it might fix the problem.
There won’t be a fix from the ado project because this used to be a warning and has now turned into an error.
Eventually it will turn into a hard fail so we need to fix.
The fix is we need to define the server parameter on database init. Currently because it is not set we get this error.
For now the only solution is as Stephen has suggested, ignore deprecated errors in php.ini.
i keep my master up to date with git : ‘fetch upstream’ and then ‘pull upstream master’ - and use docker-compose up and down - is there more I need to do?