RelaXXPlayer 0.69

Another bugfix release of the enhanced ALAX client for the music player daemon. Now with russian language support. RelaXX includes features like keyboard-control, drag and drop, context-menus, sortable tracklists and more using JavaScript. Suited to all MPD versions and all modern browsers now. Issue with MPD 1.5x was fixed.

#1 Re: RalaXXPlayer 0.69

nemo136, <E-Mail> / 11 November 2009  
avatar

Just updated, thanks for your work !

[ Reply (0) ]

#2 Re: RalaXXPlayer 0.69

aitherios, <E-Mail> / 28 November 2009  
avatar

I've been searching for a good web mpd client and finally ended up here. Thanks for your work \o/

[ Reply (0) ]

#3 Re: RalaXXPlayer 0.69

Laurent Ghigonis, <E-Mail> / 08 February 2010  
avatar

Thanks for this great mpd client, the best php frontend i found :)
the feature to play the tracks in a flash applet is really usefull, i hope you have plans on making in less "beta" =)
keep up the good work !

[ Reply (0) ]

#4 Re: RalaXXPlayer 0.69

Oliver, <E-Mail> / 24 February 2010  
avatar

Hi Dirk,
awesome work! thanx for that really really nice GUI.

just 3 cents from me:

1) wildcards in the search-box would be nice. f.i. when i want to search with 2 terms

2) is there a possibility to order the mp3's in a tagtree? like sort by name, album etc

3) recommendations would be cool. ;)

[ Reply (0) ]

#5 Re: RalaXXPlayer 0.69

Eric, <> / 13 March 2010  
avatar

After trying out 10-15 MPD clients - this is EXACTLY what I was looking for. Great client!

[ Reply (0) ]

#6 Re: RalaXXPlayer 0.69

Wattafunnyname, <E-Mail> / 17 June 2010  
avatar

Thanks for this great Webfrontend for mpd.
After an upgrade to php5.3 it is not working anymore - have you noticed something similar?

[ Reply (0) ]

#7 Re: RalaXXPlayer 0.69

Eric, <> / 22 June 2010  
avatar

Watta: Yup, me too. Looks like some depreciated commands makes this fail in php5.3 Hope someone has a fix!

[ Reply (0) ]

#8 Re: RalaXXPlayer 0.69

Eric, <> / 22 June 2010  
avatar

Well, I fixed the scripting errors. In index.php, change lines 17-20 (or so) to read:

session_start();
if (!isset($_SESSION['relaxx'])) {
$_SESSION['relaxx'];
$_SESSION['relaxx_pass'];
$_SESSION['relaxx_hostdata'];
}


However, relaxx still can't connect to MPD to read the playlist. The buttons work, I can view my file hierarchy, but the playlist won't load. Stuck on "loading...". Settings haven't changed, so I'm not sure what happened.

[ Reply (0) ]

#9 Re: RalaXXPlayer 0.69

Eric, <> / 22 June 2010  
avatar

I'm answering my own comment again. The reason that relaxx was unable to show the MPD playlist, etc, was that it was still running into depreciated errors. I modified this line in my php.ini file to ignore those errors:


error_reporting = E_ALL & ~E_NOTICE & E_DEPRECIATED


After that change, relaxx worked as usual.

[ Reply (0) ]

#10 Re: RalaXXPlayer 0.69

Albert, <E-Mail> / 24 June 2010  
avatar

If running PHP 5.3.0 or higher change lines
session_register('relaxx');
session_register('relaxx_pass');

session_register('relaxx_hostdata');

into:

$_SESSION['relaxx'];
$_SESSION['relaxx_pass'];
$_SESSION['relaxx_hostdata'];
in index.php.

And in include/controller-ping.php change

$config = split(";",$_SESSION['relaxx_hostdata'],3);

into

$config = explode(";",$_SESSION['relaxx_hostdata'],3);

that should fix the problems with php 5.3.0 or higher since session_register and split are deprecated.

[ Reply (1) ]

#10.1 Re: Re: RalaXXPlayer 0.69

Eric, <> / 04 July 2010  
avatar

Thanks!

[ Reply (0) ]

Donate

Visit my Website


Visit dirk-hoeschen.de also. It's in German, but with lot of codesamples and tips.
rss

Project hosted at

Recent Comments On Blog