[mythtv-users] Mythweb fixes?

Stephen Worthington stephen_agent at jsw.gen.nz
Sun Dec 11 02:12:47 UTC 2022


On Sat, 10 Dec 2022 19:17:21 -0500, you wrote:

>It might actually be an apache issue. It won't connect at all to the IP
>address. It never worked again after the upgrade, which is the definition
>of a bad upgrade. Having a hard time troubleshooting since there is no
>longer a "conf.d" directory in etc. Mint devs need to stop moving critical
>files around!
>
>Steve

Mint is close enough to Ubuntu that the problems are likely to be the
same.  What version of PHP is installed?  This command should tell
you:

sudo apt list --installed | grep -i php

and this one should tell you what version of PHP that Apache2 is
configured for:

sudo a2query -m | grep -i php

I suspect that the two versions are not matching, which happens when
PHP gets an upgrade - Apache2 does not automatically get reconfigured
to use the new version.  If so, then you need to disable the old
Apache2 PHP module and enable the new one, something like this:

sudo a2dismod php7.4
sudo a2enmod php8.1
sudo systemctl restart apache2


More information about the mythtv-users mailing list