When I sign in as an admin in my Phorge instance, I get a notification saying that Config 'notification.servers' is invalid as illustrated below :
First of all, I can see that the value is restored to "strlen(): Passing null to parameter #1 ($string) of type string is deprecated" witch is something abnormal for sure. I cannot find any error trace to identify where the issue is located (nothing in my web server log). Any idea to get the stacktrace and propose a fix ?
The second weird thing is that the 'notification.servers' key looks correct (by the way, it was not complaining before I moved my instance from PHP 7.4 to PHP 8.2). Here is its value :
root@xxx:/var/www/phorge/bin# ./config get notification.servers { "config": [ { "key": "notification.servers", "source": "local", "value": [ { "type": "client", "host": "my.phorge.instance", "port": 22280, "protocol": "http" }, { "type": "admin", "host": "127.0.0.1", "port": 22281, "protocol": "http" } ], "status": "set", "errorInfo": null }, { "key": "notification.servers", "source": "database", "value": null, "status": "unset", "errorInfo": null } ] }