PHP Options Error after 8.1.0

SYSTEM INFORMATION
OS type and version Ubuntu Server 24.04.4
Webmin version 2.621
Virtualmin version 8.1.0 GPL
Webserver version nginx/1.28.1
Related packages PHP 8.3.30 - Mode FPM

Fatal Error!
virtualmin-nginx::feature_get_web_php_children failed : Undefined subroutine &virtual_server::get_php_max_childred_allowed called at /usr/share/webmin/virtualmin-nginx/virtual_feature.pl line 1550.

There was no error at 8.0.1 and after 8.1.0 update of Virtualmin i get above error at Virtualmin > Web Configuration > PHP Options

Hello,

Try SSHing into your server and run:

systemctl restart webmin

I see the issue now! Sorry about that.

We will release Virtualmin Nginx 2.40 to address this issue. The update should appear in the repositories later today.

You can run the following command to install the latest update when it arrives:

apt-get clean && apt-get update && apt-get upgrade -y

If you want to fix it right away, run the following command on a Debian/Ubuntu system:

sudo sed -i 's/get_php_max_childred_allowed/get_php_max_children_allowed/g' /usr/share/webmin/virtualmin-nginx/virtual_feature.pl

On Alma, Rocky, or RHEL:

sudo sed -i 's/get_php_max_childred_allowed/get_php_max_children_allowed/g' /usr/libexec/webmin/virtualmin-nginx/virtual_feature.pl

typo :smiley:
thanks..