qbittorrent / qBittorrent

qBittorrent BitTorrent client
https://www.qbittorrent.org
Other
28.25k stars 3.97k forks source link

After update to 4.3.3, all magent torrents are stuck at "downloading metadata" #14276

Open djixas opened 3 years ago

djixas commented 3 years ago

Please provide the following information

qBittorrent version and Operating System

4.3.3, Windows 10 (10.0.1xxxx) x64 Pro Latest + VPN

If on linux, libtorrent-rasterbar and Qt version

(type here)

What is the problem

After update to 4.3.3, all NEW magent torrents are stuck at "downloading metadata", while previously partialy downloaded or if I get them as regular torrents (new) do work fine. Altready tried new port thing for each startup.

What is the expected behavior

Download should work

Steps to reproduce

Extra info(if any)

Validate trackers is disabled Tried using different vpns, same.

znrk280 commented 3 years ago

Please provide the following information

qBittorrent version and Operating System

4.3.3, Windows 10 x64 Pro Latest + VPN

If on linux, libtorrent-rasterbar and Qt version

(type here)

What is the problem

After update to 4.3.3, all NEW magent torrents are stuck at "downloading metadata", while previously partialy downloaded or if I get them as regular torrents (new) do work fine. Altready tried new port thing for each startup.

What is the expected behavior

Download should work

Steps to reproduce

Extra info(if any)

Validate trackers is disabled Tried using different vpns, same.

Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.

znrk280 commented 3 years ago

I have same problems with downloading metadata stuck. Running ubuntu 20.04 with qBittorent v4.3.3 with following built in libraries : Qt: 5.12.8 Libtorrent: 1.2.12.0 Boost: 1.7.1.0 OpenSSL: 1.1.1f zlib:1.2.11

if any anyone have same issues or have resolved the problem, kindly post .

dalepmay7 commented 3 years ago

I've seen forum posts saying this problem has existed for at least 2 years now. At this point, I'm starting to wonder if qBitTorrent was created as a marketing trick for Deluge.

Correction: 5 years.

nam3k commented 3 years ago

I don't know if this is related, sounds like it is, but some magnets and torrents also hangs my qBittorrent 4.3.x (haven't tested earlier versions) Windows 10 Enterprise LTSC 1908 x64, without VPN. Last magnet I've tried that crashed: magnet:?xt=urn:btih:35E643E46187450E605E001EB8EBA56346AFAA50&dn=Windows%2010%20X64%2020H2%2010in1%20OEM%20en-US%20JAN%202021%20%7BGen2%7D&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.dler.org%3A6969%2Fannounce&tr=udp%3A%2F%2Fopentracker.i2p.rocks%3A6969%2Fannounce&tr=udp%3A%2F%2F47.ip-51-68-199.eu%3A6969%2Fannounce

nam3k commented 3 years ago

Used http://magnet2torrent.com/ to check if .torrent file works. It hung the app too. But I've successfully added it by dragNdropping the file to qBittorrent.

thalieht commented 3 years ago

Last magnet I've tried that crashed:

Can't reproduce in 4.3.3 and it doesn't sound related to this issue.

The5kull commented 3 years ago

Use this script (https://github.com/TheFrenchGhosty/Torrent-Magnets-Cleaner-Trackerless-Magnets-Userscript) to clean those magnet links because in the link above I see a lot of crap.

jmanabc commented 3 years ago

Same issue, Arch Linux.

gonzad26 commented 2 years ago

I'm having the same problem but with windows 11. If i disable Firewall it works ok. I have qBitorrent allowed but doesnt work.

rabin-io commented 2 years ago

I had this issue for some time, which didn't show up with other apps like KTorrent, so as first I thought it was an application config, but it wasn't in my case. For some reason I added a bridge interface on my machine, and qbittorrent was binding to it instead to my active interface.

This was the problem in my case,

❯ sudo ss -lnptu | grep torr
udp   UNCONN 0      39168  10.10.10.1%br-local:1194       0.0.0.0:*    users:(("qbittorrent",pid=35860,fd=26))
udp   UNCONN 0      0                  0.0.0.0:6771       0.0.0.0:*    users:(("qbittorrent",pid=35860,fd=28))
tcp   LISTEN 0      30     10.10.10.1%br-local:1194       0.0.0.0:*    users:(("qbittorrent",pid=35860,fd=21))

After removing the bridge interface, qbittorrent bind correctly, and the torrents started working again.

❯ sudo ss -lnptu | grep torr
udp   UNCONN 0      0      10.10.10.1%enp0s20f0u4u4u2:1194       0.0.0.0:*    users:(("qbittorrent",pid=35860,fd=26))
udp   UNCONN 0      0                         0.0.0.0:6771       0.0.0.0:*    users:(("qbittorrent",pid=35860,fd=28))
tcp   LISTEN 0      30     10.10.10.1%enp0s20f0u4u4u2:1194       0.0.0.0:*    users:(("qbittorrent",pid=35860,fd=21))

Hope this helps others who've had a problem.