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.
[Solved] Mythweb Backend Status Page is blank
Moderator: Forum Moderators
-
- Newcomer
- Posts: 2
- Joined: Thu Sep 12, 2024 2:02 pm
- dnalorernst
- Developer
- Posts: 124
- Joined: Mon Feb 17, 2020 8:03 pm
Re: Mythweb Backend Status Page is blank
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
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
Otherwise, you need to enter the correct IP address.
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);
-
- Newcomer
- Posts: 2
- Joined: Thu Sep 12, 2024 2:02 pm
Re: Mythweb Backend Status Page is blank
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.
I used phpmyadmin to add the values to the mythconverg database.
Worked perfectly! Thank you.