INTERACT FORUM

More => Old Versions => JRiver Media Center 20 for Linux => Topic started by: newbluesman on June 30, 2014, 07:41:33 am

Title: Access denied to download new build
Post by: newbluesman on June 30, 2014, 07:41:33 am
Hi.  I downloaded and installed 129 back in May and have been using it since then without difficulty.  On seeing that registration was now possible with 143, I decided to update and use the key I bought on May 7.  But when I ran "wget http://files.jriver.com/mediacenter/channels/v19/latest/MediaCenter-19.0.14X.deb" for 141, 143 and 144 I got a message that I was denied access, so I couldn't download any of them.

Do I have to remove 129 before downloading the latest build? Did I not use the correct command for Ubuntu 14? Or am I supposed to get the new builds a different way?  Thanks!

David
Title: Re: Access denied to download new build
Post by: Hendrik on June 30, 2014, 07:43:36 am
You'll get a access denied message when you use a wrong address.
Use the address directly from the release post, they work just fine.
Title: Re: Access denied to download new build
Post by: aoqw76 on June 30, 2014, 05:27:01 pm
I run a script to install a new version, just to speed things up a bit. The "wget" bit is exactly as you have it, albeit using a passed parameter. Save this in a script e.g called "upgrademc", make it executable, then you can run it like this> upgrademc 146

Code: [Select]
#!/bin/bash
fname="MediaCenter-19.0.$1.deb"
download="http://files.jriver.com/mediacenter/channels/v19/latest/$fname"
cd ~/Downloads
rm -rv MediaCenter*$1*
wget -U Mozilla/5.0 $download
if [ -f $fname ]
then
pkill mediacenter
sudo dpkg -i $fname
nohup /usr/bin/mediacenter19 &
else
echo "download of" $fname "failed"
fi
Title: update accomplished
Post by: newbluesman on July 01, 2014, 08:10:39 am
Thanks, aoqw76! But I solved it the easy way and used the correct build number - I simply hadn't noticed that we're up to 146 and was trying to update to 144.  When that didn't work, I went the wrong way and tried earlier builds.

Now all I have to do is get the registration to work and I'm all set. I entered my key as instructed in the dialogue box and got a response that it wasn't recognized. So I'll try running the commands referenced in another thread:

cd /etc/ssl/certs
ln -s /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem ca-certificates.crt

I'll pursue the mjr route if that doesn't work - there was an mjr file attached to the email I received with my registration key and info.

David