Automatic HK download disabled or failed
Re: Automatic HK download disabled or failed
I've been following this topic for a few weeks now as I too have had trouble with MakeMKV. It started with v1.17.6. That is when the "Automatic HK downloading is disabled or failed" starting happening. I've tried all the suggestions mentioned here and no joy. I uninstalled v1.17.6 and installed v1.17.4. Using both of these versions I still couldn't rip .mkv files of The Transformers 5 Movie 4K UHD Collection. I'm using a VPN and that hasn't helped that I can see.
A couple days ago I did a system restore from a backup drive for other reasons. The backup had v1.17.5 installed. When I inserted a Transformers disk I still got the "Automatic HK downloading is disabled or failed" error BUT MakeMKV still open the disk and I was able to rip the movie. I successfully completed the whole set last night. This morning I tried my Oppenheimer 4K disk and no joy.
A couple days ago I did a system restore from a backup drive for other reasons. The backup had v1.17.5 installed. When I inserted a Transformers disk I still got the "Automatic HK downloading is disabled or failed" error BUT MakeMKV still open the disk and I was able to rip the movie. I successfully completed the whole set last night. This morning I tried my Oppenheimer 4K disk and no joy.
Re: Automatic HK download disabled or failed
I have 3 snapshots to add but the system won't let me add them. They total 110 kb + 186 kb +105 kb = 411 kb. Is there a file size limit? Thank you for your help.
Re: Automatic HK download disabled or failed
Snapshots would not do any good, in any case. Yes, there is a size limit for messages of about 65K, so each of those files exceed what a message contains.
However, the key is getting around your system's blocking the download. It really only has to happen when you are ripping a disk that isn't in your already-downloaded copy of the HK database. It doesn't matter which version of MakeMKV you're using, the download comes from the same place.
However, the key is getting around your system's blocking the download. It really only has to happen when you are ripping a disk that isn't in your already-downloaded copy of the HK database. It doesn't matter which version of MakeMKV you're using, the download comes from the same place.
MakeMKV Frequently Asked Questions
FAQ about BETA and PERMANENT keys.
How to aid in finding the answer to your problem: Activating Debug Logging
FAQ about BETA and PERMANENT keys.
How to aid in finding the answer to your problem: Activating Debug Logging
Re: Automatic HK download disabled or failed
I'm a noob at using a VPN. Does "exit points" mean the server location I choose?
Re: Automatic HK download disabled or failed
My VPN has no servers within the Russian borders. It has some servers close by. I may be out of luck. I've read that the Russian Federation has placed heavy restrictions of information access since the conflict with the Ukraine started. Can the automatic HK download be moved to another server outside the Russian border?
Re: Automatic HK download disabled or failed
I live in the USA and don't need a VPN to connect to the key server. You don't necessarily need to use an exit point in Russia either.Ritzter13 wrote: ↑Mon Apr 15, 2024 1:08 pmMy VPN has no servers within the Russian borders. It has some servers close by. I may be out of luck. I've read that the Russian Federation has placed heavy restrictions of information access since the conflict with the Ukraine started. Can the automatic HK download be moved to another server outside the Russian border?
Re: Automatic HK download disabled or failed
Out of curiosity, what DNS servers does your VPN use? Their own? You ISP's (~defeats the purpose of VPN)? Have you tried alternatives?Ritzter13 wrote: ↑Mon Apr 15, 2024 1:08 pmMy VPN has no servers within the Russian borders. It has some servers close by. I may be out of luck. I've read that the Russian Federation has placed heavy restrictions of information access since the conflict with the Ukraine started. Can the automatic HK download be moved to another server outside the Russian border?
Re: Automatic HK download disabled or failed
Interesting! I'm here to learn how to get rid of the HK issue.
-
- Posts: 17
- Joined: Thu Jan 26, 2023 2:12 am
Re: Automatic HK download disabled or failed
Google Fiber can't do it, but T-Mobile can.
-
- Posts: 17
- Joined: Thu Jan 26, 2023 2:12 am
Re: Automatic HK download disabled or failed
If you wanna use your phone as a mobile hotspot or a VPN provider to bypass your ISP's restrictions, you don't have to change anything crazy, all you need to do is tell Windows to send that one IP address to the gateway you're connected to.
The IP you care about is `185.84.108.20`. You need to add a route that says "if you want this IP, go through this gateway" like this:
A gateway is a router. In the case of a mobile hotspot, that's your phone's IP. In the case if a VPN, that's the VPN server's IP. It'll say it in Windows as "Default Gateway".
The `-p` in that command means persistent. If you add it like my example, it'll be there across restarts. The benefit is you only need to load up that VPN or mobile hotspot when downloading the file. Since you already can't access that file over your ISP, it won't be a problem to send that traffic to a place that's only temporarily going to be around.
If you wanna remove this custom route, just do:
The benefit of doing it this way is you don't have to send any traffic to another network except getting the SDF file. If you're on a VPN, this also means you don't have to send all your traffic across a VPN to download one file.
The IP you care about is `185.84.108.20`. You need to add a route that says "if you want this IP, go through this gateway" like this:
Code: Select all
route add 185.84.108.20 mask 255.255.255.255 192.168.6.1 metric 1 -p
Code: Select all
IPv4 Address. . . . . . . . . . . : 192.168.6.6
Subnet Mask . . . . . . . . . . . : 255.255.255.248
Default Gateway . . . . . . . . . : 192.168.6.1
If you wanna remove this custom route, just do:
Code: Select all
route delete 185.84.108.20