laralpha wrote: 
> 
> I am using a synology ds411j with an old version of perl (5.8.6) and i
> am not sure if I can update it without being a linux expert, which i am
> not.
> 
> The log in LMS says:
> 13-04-09 19:35:50.5383] main::init (354) Starting Logitech Media Server
> (v7.7.2, r33893, Wed Mar 14 06:37:22 MDT 2012) perl 5.008006
> [13-04-09 19:36:08.6288] Slim::bootstrap::tryModuleLoad (285) Warning:
> Module [Plugins::LMSnewGUI::Plugin] failed to load:
> "catfile" is not exported by the File::Spec module
> Can't continue after import errors at
> /volume1/@appstore/SqueezeCenter/Cache/InstalledPlugins/Plugins/LMSnewGUI/Plugin.pm
> line 47
> BEGIN failed--compilation aborted at
> /volume1/@appstore/SqueezeCenter/Cache/InstalledPlugins/Plugins/LMSnewGUI/Plugin.pm
> line 47.
> Compilation failed in require at (eval 983) line 2.
> BEGIN failed--compilation aborted at (eval 983) line 2.

I checked, and the File::Spec module is supposed to be present in your
perl version, as is the catfile method (there would have been a
different error in this case anyway). No clue why it's  not exported,
maybe it wasn't in old versions.
Can you try the following:
Change line 47 in
/volume1/@appstore/SqueezeCenter/Cache/InstalledPlugins/Plugins/LMSnewGUI/Plugin.pm
from 

Code:
--------------------
    
  use File::Spec 'catfile';
  
--------------------

to 

Code:
--------------------
    
  use File::Spec;
  
--------------------

restart the LMS server, and test if this works for you.


------------------------------------------------------------------------
Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
View this thread: http://forums.slimdevices.com/showthread.php?t=98186

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to