You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function has been DEPRECATED as of PHP 8.2.0. Relying on this function is highly discouraged.
In my particular case the website's response time goes from ~200 ms to 3000-4000 seconds, when using MySQL as the database, where the deprecated error is logged 1012 times for each page load.
For a website using XML as the database, it is likely that the website will become unresponsive once the SMLog.xml.php file reaches a certain size, which will probably happen soon after upgrading to PHP 8.2.
The text was updated successfully, but these errors were encountered:
A huge amount of deprecation warnings are logged on PHP 8.2:
Error 8192: Function utf8_decode() is deprecated
Sure enough, utf8_decode(..) was deprecated with PHP 8.2: https://www.php.net/manual/en/function.utf8-decode.php
In my particular case the website's response time goes from ~200 ms to 3000-4000 seconds, when using MySQL as the database, where the deprecated error is logged 1012 times for each page load.
For a website using XML as the database, it is likely that the website will become unresponsive once the SMLog.xml.php file reaches a certain size, which will probably happen soon after upgrading to PHP 8.2.
The text was updated successfully, but these errors were encountered: