I'm loving every single song it's selecting for me. Is there a way I can login and save my loved songs (apart from scrobbling) ?
So I liked a song, then I clicked scrobble , it redirected to last.fm - fine, but when it returned to mixest, it started playing another song, and also lost all my previously loved songs :(
Ah, that's because www.mixest.com and mixest.com are technically different domains :(. I'll get that fixed up, but your loved songs should appear on one of the two domains.
A small bug : sometimes when I click Next, nothing happens, so I clicked Next many times. That ended up in the song history becoming like this : http://i.imgur.com/yUcj5.png
im going to catch shit for choosing www over no-www, but if you want to make it so everybody is funneled to ONE domain (ie. www.mixest.com) put this in your htaccess and your problem will be solved.
Comments
I'm loving every single song it's selecting for me. Is there a way I can login and save my loved songs (apart from scrobbling) ?
So I liked a song, then I clicked scrobble , it redirected to last.fm - fine, but when it returned to mixest, it started playing another song, and also lost all my previously loved songs :(
Ah, that's because www.mixest.com and mixest.com are technically different domains :(. I'll get that fixed up, but your loved songs should appear on one of the two domains.
You were right. They were on www
A small bug : sometimes when I click Next, nothing happens, so I clicked Next many times. That ended up in the song history becoming like this : http://i.imgur.com/yUcj5.png
im going to catch shit for choosing www over no-www, but if you want to make it so everybody is funneled to ONE domain (ie. www.mixest.com) put this in your htaccess and your problem will be solved.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mixest.com$ [NC]
RewriteRule ^(.*)$ http://www.mixest.com/$1 [R=301,L]
... just without the double spacing. HN was turning it into one line if I didn't double space.