[Solved] Mythweb Backend Status Page is blank

Have a MythTV related problem? Ask for help from other MythTV users here.

Moderator: Forum Moderators

Post Reply
bunkercomm
Newcomer
Posts: 2
Joined: Thu Sep 12, 2024 2:02 pm
Canada

[Solved] Mythweb Backend Status Page is blank

Post by bunkercomm »

Good morning,

I'm working on a fresh install of Mythtv 34 on Ubuntu 24.04.
Everything is working well with the exception of the classic Mythweb Backend Status Page; it's blank (http://<IPADDESS>/mythweb/status)
However, the new Backend Status page is working properly at http://<IPADDRESS>hostname:6544/dashboard/status
I prefer the classic Mythtweb interface.
This is a VM on Proxmox - for what it's worth.

Any ideas for the classic status page?
Thanks.
User avatar
dnalorernst
Developer
Posts: 124
Joined: Mon Feb 17, 2020 8:03 pm
Austria

Re: Mythweb Backend Status Page is blank

Post by dnalorernst »

This is a known issue, see
https://github.com/MythTV/mythweb/issues/89

Workaround:
Check if the setting 'MasterServerIP' exists, in the MySQL console enter

Code: Select all

SELECT * FROM `settings` WHERE `value` LIKE 'MasterServerIP';

If it does not exist and
* the master backend resides in the the same IP
* apache server is also on that IP

create a setting in the MySQL console

Code: Select all

INSERT INTO `settings` (`value`, `data`, `hostname`) VALUES ('MasterServerIP','127.0.0.1',NULL);
Otherwise, you need to enter the correct IP address.
bunkercomm
Newcomer
Posts: 2
Joined: Thu Sep 12, 2024 2:02 pm
Canada

Re: Mythweb Backend Status Page is blank

Post by bunkercomm »

Thanks for the quick reply. I wouldn't have been able to find that solution on my own.
I used phpmyadmin to add the values to the mythconverg database.
Worked perfectly! Thank you.
Post Reply