01-01-2025, 03:38 AM
(01-01-2025, 02:16 AM)TheOldPresbyope Wrote: @Tim Curtis
For the last week I've been mostly quiet due to family events in MD, VA, and PA (Ah, what we Silverbacks do to see grandkids!).
A quick check tonight on a moOde 9.2.1 player vis a moOde 9.1.5 player
1. both players UPnP renderers set to service type: UPnP-A/V. Using mconnectLite on my iPad as UPnP control point and a local UPnP media server on my NAS. Using a Firefox browser on my Linux laptop. Start playing a track and in the webUI Playback screen click on '...' and choosing Audio info:
- for the moOde 9.1.5 player I see the Audio information modal with the Track box highlighted and no track info displayed. Clicking the Playback box gets me the usual playback information (Input/output, etc.).
- for the moOde 9.2.1 player, I get no modal popping up.
2. set both renderers to service type: OpenHome. Using Lumin on my iPad as UPnP control point. Everything else is the same.
- the results are the same.
Haven't had time to look for any errors being logged. Suggested places to look?
Regards,
Kent
In file /var/www/command/audioinfo.php
Add the following workerLog() line above the switch statement. It will print the contents of the $_GET array to the moode log. This will show the 'cmd' and 'path' values which will allow you to walk the code path, possibly to the place where its blowing up.
Code:
workerLog("DEBUG:\n" . print_r($_GET, true));
switch ($_GET['cmd']) {
.
.
.
If nothing prints to the moode log then the blow up is prolly happening in function audioInfo() in upstream /var/www/js/playerlib.js.