Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-27 Thread veragooner

Yes, 7.9.1



veragooner's Profile: http://forums.slimdevices.com/member.php?userid=21099
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-27 Thread Michael Herger

Seems ok now. Thanks.


Using 7.9.1?

--

Michael
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-27 Thread veragooner

oops ! trying to make it too complicated!

Seems ok now. Thanks.



veragooner's Profile: http://forums.slimdevices.com/member.php?userid=21099
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-27 Thread Michael Herger

Sorry i don't know how to do this unless the update appears in the LMS
software updates section


From the other thread you've reported issues with your DNS in I take it 
you are using Windows? Then just download the .exe file from the link I 
gave, run it to update your installation.


--

Michael
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-25 Thread veragooner

I think my problem is related to this thread. My spotify LMS menu is
missing when I run smart DNS, it works in remote and radio menus.

[17-03-25 08:09:02.7786] Slim::Utils::Misc::msg (1244) Warning:
[08:09:02.7784] EV: error in callback (ignoring): Can't call method
"error" on an undefined value at /Slim/Networking/SqueezeNetwork.pm line
183.

Michael mentions contacting the DNS vendor about this but I wondered if
there is a fix for it, I'm pretty sure it didn't happen with 7.8.

I was previously running unotelly DNS and this caused the same issue, as
Michael suggested in an earlier thread.



veragooner's Profile: http://forums.slimdevices.com/member.php?userid=21099
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-21 Thread Michael Herger

I did that change and everything works fine! Thank you!


Excellent! That backtrace you provided helped a lot. Thanks again!


--

Michael
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-21 Thread m@k

I did that change and everything works fine! Thank you!



m@k's Profile: http://forums.slimdevices.com/member.php?userid=51582
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-21 Thread mherger

Thanks a lot! I think that trace lead me right up to a bug I introduced
in my attempt to limit the hammering of mysb.com due to rogue LMS
instances. Could you please try the following change?


Code:

diff --git a/Slim/Networking/SqueezeNetwork.pm 
b/Slim/Networking/SqueezeNetwork.pm
  index cf92d30..4897946 100644
  --- a/Slim/Networking/SqueezeNetwork.pm
  +++ b/Slim/Networking/SqueezeNetwork.pm
  @@ -285,7 +285,7 @@ sub login {
  my $login_params;
  
  # don't run the query if we've failed recently
  -   if ( $time < $nextLoginAttempt && !$params{interactive} ) {
  +   if ( $time < $nextLoginAttempt && !$params{interactive} && 
!$params{SSLfailed} ) {
  $log->warn("We've failed to log in a few moments ago, or are still waiting 
for a response. Let's not try again just yet, we don't want to hammer it.");
  return $params{ecb}->(undef, cstring($client, 'SETUP_SN_VALIDATION_FAILED'));
  }
  



Thanks for a great finding!



Michael

http://www.herger.net/slim-plugins - MusicArtistInfo, MusicInfoSCR

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-21 Thread m@k

mherger wrote: 
> As you seem able to edit code, could you please try the following?
> Re-enable SSL (if you've disabled it). Then add a logBacktrace in the
> error handler (around line 183 in SqueezeNetwork.pm):
> 
> > 
Code:

  >   > 
  > sub _init_error {
  > my $http  = shift;
  > # XXX - tell us where we're being called from
  > logBacktrace($http);
  > my $error = $http->error;
  > 

> > 
> 
> Because I'd like to find out where we are being called without the
> $http object.
> 
> Thanks!


Code:


  [17-03-21 09:10:31.4914] main::__ANON__ (430) Warning: [09:10:31.4910] Use of 
uninitialized value in join or string at 
/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServ
  er/CPAN/Log/Log4perl/Appender.pm line 164.
  [17-03-21 09:10:31.4921] main::__ANON__ (430) Warning: [09:10:31.4918] Use of 
uninitialized value in join or string at 
/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServ
  er/CPAN/Log/Log4perl/Appender.pm line 164.
  [17-03-21 09:10:31.4923] Slim::Networking::SqueezeNetwork::_init_error (183) 
Error:  
 
  [17-03-21 09:10:31.4930] Slim::Networking::SqueezeNetwork::_init_error (183) 
Backtrace:  
 
  
  frame 0: Slim::Utils::Log::logBacktrace 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/SqueezeNetwork.pm
 line 183) 
  frame 1: Slim::Networking::SqueezeNetwork::_init_error 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/SqueezeNetwork.pm
 line 291)  
  frame 2: Slim::Networking::SqueezeNetwork::login 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/SqueezeNetwork.pm
 line 556)
  frame 3: Slim::Networking::SqueezeNetwork::_error 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/SimpleAsyncHTTP.pm
 line 236)  
  frame 4: Slim::Networking::SimpleAsyncHTTP::onError 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/Async/HTTP.pm
 line 278) 
  frame 5: Slim::Networking::Async::HTTP::_http_error 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/Async.pm
 line 253)  
  frame 6: Slim::Networking::Async::_async_error 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/Async.pm
 line 157)   
  frame 7: Slim::Networking::Async::_connect_error 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/Async.pm
 line 114) 
  frame 8: Slim::Networking::Async::connect 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/Async.pm
 line 82) 
  frame 9: Slim::Networking::Async::_dns_ok 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/Async/DNS.pm
 line 86) 
  frame 10: Slim::Networking::Async::DNS::__ANON__ 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/lib/AnyEvent/DNS.pm
 line 1338) 
  frame 11: AnyEvent::DNS::__ANON__ 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/lib/AnyEvent/DNS.pm
 line 1110)
  frame 12: AnyEvent::DNS::__ANON__ 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/lib/AnyEvent/DNS.pm
 line 1020)
  frame 13: AnyEvent::DNS::_feed 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/lib/AnyEvent/DNS.pm
 line 1033)   
  frame 14: AnyEvent::DNS::_recv 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/lib/AnyEvent/DNS.pm
 line 775)
  frame 15: AnyEvent::DNS::__ANON__ 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/IO/Select.pm
 line 168)
  frame 16: (eval) 
(/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/IO/Select.pm
 line 168) 
  frame 17: Slim::Networking::IO::Select::loop 
(/opt/ssods4/var/home/SqueezeboxServer/slimserver.pl line 722)  
  
  frame 18: main::idle (/opt/ssods4/var/home/SqueezeboxServer/slimserver.pl 

Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-20 Thread mherger

Ok, so you're seeing a problem using SSL with mysb.com. I don't like
that :-(.

As you seem able to edit code, could you please try the following?
Re-enable SSL (if you've disabled it). Then add a logBacktrace in the
error handler (around line 183 in SqueezeNetwork.pm):


Code:


  sub _init_error {
my $http  = shift;
# XXX - tell us where we're being called from
logBacktrace($http);
my $error = $http->error;
  



Because I'd like to find out where we are being called without the $http
object.

Thanks!



Michael

http://www.herger.net/slim-plugins - MusicArtistInfo, MusicInfoSCR

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-20 Thread mherger

Is your player even connected to your LMS? The Controller seems to be
requesting information for a player which is not available. 

Have you been able to double-check with 7.8? Would it indeed still
work?

And as I don't speak Polish: could you please tell me what that error
message in your log file says?



Michael

http://www.herger.net/slim-plugins - MusicArtistInfo, MusicInfoSCR

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-20 Thread Michael Herger

How can I switch SBS to log debug info?


When you get that error message, there unfortunately is not much more to 
find in the log files.


Could you please make sure you've got IO::Socket::SSL installed on your 
system? It's a perl module you should be able to install using your OS' 
packet manager.


And please provide more of your log file. Feel free to upload a copy to 
my dropbox:


https://www.dropbox.com/request/T3RctyzGgNg0oFDubq6a



--

Michael
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-20 Thread m@k

I made the mistake in my previous post: I can only see icons of
mysqueezebox applications on phone and squeezeboxes, but applications
don't work, indeed.

Thank you Michael for suggestion. I tried to change nameserver to
8.8.8.8, but still the same. I have backup of SqueezeboxServer directory
with 7.8. When I switch directories, there is no problem with access to
Deezer, Flickr etc.

How can I switch SBS to log debug info?

m@k



m@k's Profile: http://forums.slimdevices.com/member.php?userid=51582
View this thread: http://forums.slimdevices.com/showthread.php?t=107153

___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter


Re: [SlimDevices: SqueezeCenter] MyApps list is empty on Web UI after installing 7.9

2017-03-19 Thread Michael Herger

EV: error in callback (ignoring): Can't call method "error" on an undefined 
value at 
/share/CACHEDEV1_DATA/.qpkg/LogitechMediaServer/var/home/SqueezeboxServer/Slim/Networking/SqueezeNetwork.pm
 line 183.


The only time I've ever seen this exact issue (calling "error" on an 
undefined http object) was when somebody was using an alternative DNS 
which is supposed to give some additional privacy or security features. 
Going back to using his provider's DNS resolved the issue. Would you be 
using something like that?


--

Michael
___
Squeezecenter mailing list
Squeezecenter@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/squeezecenter