Home of the Squeezebox™ & Transporter® network music players.

Go Back   Squeezebox : Community : Forums > Developer Forums > Beta
User Name
Password

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 2007-08-30, 07:10
plympton plympton is offline
Senior Member
 
Join Date: Aug 2007
Location: Portland, OR, USA
Posts: 163
plympton is on a distinguished road
Default Can't start nightlies (25,29)

First time reporting a bug - I can't get the install of the nightlies to start up at all. I'm wondering if it's because I have SlimRio's on the network (Rio Receivers using the Slimp3 protocol).

Here's the tail:
Slim::Formats::RemoteStream:pen (104) Timeout on connect to [localhost:10002]: 10035: Unknown error
Slim::Plugin::MusicMagic::Plugin::initPlugin (139) Can't connect to port 10002 - MusicMagic disabled.
Slim::Utils::PluginManager::enablePlugins (324) Skipping plugin: Slim::Plugin::RPC::Plugin - disabled
Slim::Utils::PluginManager::enablePlugins (324) Skipping plugin: Slim::Plugin::RS232::Plugin - disabled
Slim::Utils::PluginManager::enablePlugins (324) Skipping plugin: Slim::Plugin::Snow::Plugin - disabled
Slim::Music::Import::addImporter (425) Adding Slim::Plugin::iTunes::Plugin Scan
Slim::Utils::PluginManager::enablePlugins (324) Skipping plugin: Slim::Plugin::xPL::Plugin - disabled
main::init (379) SlimServer checkDataSource...
main::checkDataSource (778) Warning: Schema updated or tracks in the database, initiating scan.
main::init (383) SlimServer persist playlists...
main::init (394) SlimServer HTTP enable...
main::init (398) mDNS startAdvertising...
main::init (404) SlimServer done init...
Slim::Networking::Select::select (237) Error: Select task failed: Can't use an undefined value as an ARRAY reference at C:/Program Files/SlimServer/server/Slim/Networking/SliMP3/Protocol.pm line 108.
Slim::bootstrap::theEND (338) Got to the END
Slim::bootstrap::sigint (302) Got sigint

Anyone know if there's a Windows equivilent to Tail?

Thanks!
Reply With Quote
  #2  
Old 2007-08-30, 09:13
plympton plympton is offline
Senior Member
 
Join Date: Aug 2007
Location: Portland, OR, USA
Posts: 163
plympton is on a distinguished road
Default Got it to run (8-30)

I got nightly 8-30 to run, simultaneously disconnecting my Slimrio's, do of course I confounded the debugging, but it's working. I'll test it more to see what the root cause was...

-Dan
Reply With Quote
  #3  
Old 2007-08-30, 09:29
kdf's Avatar
kdf kdf is offline
NOT a Slim Devices Employee
 
Join Date: Apr 2005
Posts: 9,488
kdf is on a distinguished road
Default

probably this line:
my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') };

if the pref for slimp3clients doesn't exist, you get the message in your log. I guess not many users have slimp3-type devices connecting to a clean install.

Please file a bug at bugs.slimdevices.com (you'll need a new sign in). It's an easy fix, but my evening probably won't give me time to merge it in. This will make sure it doesn't get forgotten.
-kdf
Reply With Quote
  #4  
Old 2007-08-30, 09:32
andyg's Avatar
andyg andyg is offline
Slim Devices Developer
 
Join Date: Jan 2006
Location: Pittsburgh, PA
Posts: 6,220
andyg is on a distinguished road
Send a message via AIM to andyg
Default Can't start nightlies (25,29)

On Aug 30, 2007, at 12:29 PM, kdf wrote:

>
> probably this line:
> my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') };
>
> if the pref for slimp3clients doesn't exist, you get the message in
> your log. I guess not many users have slimp3-type devices connecting
> to a clean install.
>
> Please file a bug at bugs.slimdevices.com (you'll need a new sign in).
> It's an easy fix, but my evening probably won't give me time to
> merge it
> in. This will make sure it doesn't get forgotten.


I'm pretty sure this is fixed in the sync code I'll be checking in
soon. Try fixing it locally to this:

my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') || [] };
Reply With Quote
  #5  
Old 2007-08-30, 09:58
kdf's Avatar
kdf kdf is offline
NOT a Slim Devices Employee
 
Join Date: Apr 2005
Posts: 9,488
kdf is on a distinguished road
Default

Quote:
Originally Posted by Andy Grundman View Post
Try fixing it locally to this:

my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') || [] };
with the usual note of course that local mods won't take effect if using the installed windows exe version of slimserver

-kdf
Reply With Quote
  #6  
Old 2007-08-30, 13:47
plympton plympton is offline
Senior Member
 
Join Date: Aug 2007
Location: Portland, OR, USA
Posts: 163
plympton is on a distinguished road
Default

Quote:
Originally Posted by Andy Grundman View Post
On Aug 30, 2007, at 12:29 PM, kdf wrote:

>
> probably this line:
> my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') };
>
> if the pref for slimp3clients doesn't exist, you get the message in
> your log. I guess not many users have slimp3-type devices connecting
> to a clean install.
>
> Please file a bug at bugs.slimdevices.com (you'll need a new sign in).
> It's an easy fix, but my evening probably won't give me time to
> merge it
> in. This will make sure it doesn't get forgotten.


I'm pretty sure this is fixed in the sync code I'll be checking in
soon. Try fixing it locally to this:

my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') || [] };
I can't build at the moment - is there to view the nightly log to see when something checks checked in? (Can I just grep for the right module filename as a start?)

-Dan
Reply With Quote
  #7  
Old 2007-08-30, 14:04
andyg's Avatar
andyg andyg is offline
Slim Devices Developer
 
Join Date: Jan 2006
Location: Pittsburgh, PA
Posts: 6,220
andyg is on a distinguished road
Send a message via AIM to andyg
Default Can't start nightlies (25,29)

On Aug 30, 2007, at 4:47 PM, plympton wrote:

>
> Andy Grundman;223939 Wrote:
>> On Aug 30, 2007, at 12:29 PM, kdf wrote:
>>
>>>
>>> probably this line:
>>> my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') };
>>>
>>> if the pref for slimp3clients doesn't exist, you get the message in
>>> your log. I guess not many users have slimp3-type devices

>> connecting
>>> to a clean install.
>>>
>>> Please file a bug at bugs.slimdevices.com (you'll need a new sign

>> in).
>>> It's an easy fix, but my evening probably won't give me time to
>>> merge it
>>> in. This will make sure it doesn't get forgotten.

>>
>> I'm pretty sure this is fixed in the sync code I'll be checking in
>> soon. Try fixing it locally to this:
>>
>> my %slimp3 = map { $_ => 1 } @{ $prefs->get('slimp3clients') || [] };

>
> I can't build at the moment - is there to view the nightly log to see
> when something checks checked in? (Can I just grep for the right
> module filename as a start?)


I'll post back in this thread once I get my changes checked in.
Reply With Quote
  #8  
Old 2007-08-30, 21:10
andyg's Avatar
andyg andyg is offline
Slim Devices Developer
 
Join Date: Jan 2006
Location: Pittsburgh, PA
Posts: 6,220
andyg is on a distinguished road
Send a message via AIM to andyg
Default Can't start nightlies (25,29)

This fix will be in tonight's nightly.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 20:42.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.