Search found 306 matches

by mike.dld
Sat Apr 02, 2016 10:04 pm
Forum: Windows Requests
Topic: Any updated news about an official windows build?
Replies: 75
Views: 1493542

Re: Any updated news about an official windows build?

Any news about the aforementioned nightlies for the Windows build? Not yet. I guess you'll notice when builds will start appearing on https://build.transmissionbt.com/. This happened today: https://build.transmissionbt.com/job/trunk-win32/arch=x86,label=pepito-win10/ (x86) https://build.transmissio...
by mike.dld
Thu Mar 31, 2016 4:14 pm
Forum: Windows Support
Topic: Problem with adding a torrent...
Replies: 2
Views: 5344

Re: Problem with adding a torrent...

This seems to be the case of #5115 . You are using Qt client to manage both local and remote sessions. Qt client currently doesn't differentiate and stores settings in both cases to the same file(s). So even if you had C:\downloads set as download directory (with local session), it's then being over...
by mike.dld
Thu Mar 31, 2016 2:32 pm
Forum: Windows Requests
Topic: Any updated news about an official windows build?
Replies: 75
Views: 1493542

Re: Any updated news about an official windows build?

I just installed the Transmission Windows client and got it up and running with Sonarr. Only one problem: torrents only show up when I look in the web ui, but not in the actual desktop client. Anyone else run into this? I would guess that you have installed both the Qt client and the daemon. I woul...
by mike.dld
Thu Mar 31, 2016 1:34 pm
Forum: Support
Topic: Donwload directory path is not absolute
Replies: 6
Views: 21203

Re: Donwload directory path is not absolute

Discussion there is about SickRage plugin for Transmission. The issue is exactly the same though: most probably you need to go to Transmission Remote GUI settings and make sure to explicitly specify non-empty download directory.
by mike.dld
Wed Mar 30, 2016 7:22 am
Forum: Windows Support
Topic: new transmission for win has diffent config path bug
Replies: 4
Views: 4360

Re: new transmission for win has diffent config path bug

Now I don't understand what you're trying to say. Qt client and daemon use different configuration directories, and this is intentional.
by mike.dld
Wed Mar 30, 2016 5:57 am
Forum: Support
Topic: Transmission-daemon and watch-dir not working.
Replies: 1
Views: 3378

Re: Transmission-daemon and watch-dir not working.

I'm confused, does it work or does it not work for you?

You could try adding "--log-debug --logfile /tmp/transmission.log" to daemon's command line and check the file for clues.
by mike.dld
Wed Mar 30, 2016 4:54 am
Forum: Windows Support
Topic: new transmission for win has diffent config path bug
Replies: 4
Views: 4360

Re: new transmission for win has diffent config path bug

You may not believe it but on other platforms those paths are different as well.
by mike.dld
Tue Mar 29, 2016 6:57 pm
Forum: Windows Support
Topic: Transmission-Qt - Features?
Replies: 1
Views: 3313

Re: Transmission-Qt - Features?

1) Scheduler Depends on what it should schedule. There's a way to set [automatic] speed limitation (a.k.a. turtle mode) during specific week days. See Edit menu -> Preferences dialog -> Speed tab -> Alternative Speed Limits group. 2) RSS feed download Search this forum for solutions. Generally you ...
by mike.dld
Tue Mar 29, 2016 6:50 pm
Forum: Windows Support
Topic: [Question] Is Transmission for Windows safe?
Replies: 6
Views: 9376

Re: [Question] Is Transmission for Windows safe?

It happened because people didn't check what they downloaded (and I don't blame them) and operating system didn't warn them either. This could happen to virtually any software you download. Check the checksums (or in this case thumbprints) and certificate info and you're safe. Unless someone steals ...
by mike.dld
Tue Mar 29, 2016 6:39 pm
Forum: Windows Support
Topic: [Question] Is Transmission for Windows safe?
Replies: 6
Views: 9376

Re: [Question] Is Transmission for Windows safe?

No builds except for OS X one (and only v2.90, and not even right away) were affected by OSX.KeRanger.A, if that's what you're asking. Windows builds are also signed (both .msi installers and all the binaries inside) with my personal certificate with thumbprint of "9b 98 3f a6 f9 7d d7 45 27 18...
by mike.dld
Sun Mar 27, 2016 3:39 pm
Forum: Web Interface
Topic: WebUI fails on initial start but works after restart
Replies: 4
Views: 6631

Re: WebUI fails on initial start but works after restart

fantast_xu wrote:Hi any updates?
If you saw release notes for 2.90, there's an item saying "Retry if RPC server fails to bind to specified address", which is exactly what this thread is about. See also #5737.

Has anyone with this issue tried 2.90 (or later)?
by mike.dld
Wed Mar 23, 2016 7:27 am
Forum: Mac Support
Topic: TLS SNI problem on OS X
Replies: 19
Views: 25028

Re: TLS SNI problem on OS X

So here's another test for you. Try running T with TR_CURL_SSL_VERIFY set and see if you get errors from other trackers and/or webseeds:

Code: Select all

$ env TR_CURL_SSL_VERIFY=1 /Applications/Transmission.app/Contents/MacOS/Transmission
by mike.dld
Wed Mar 23, 2016 7:22 am
Forum: Mac Support
Topic: TLS SNI problem on OS X
Replies: 19
Views: 25028

Re: TLS SNI problem on OS X

As far as I could tell looking into libcurl source code, SChannel (Windows) and DarwinSSL (OS X) backends disable the use of TLS SNI extension unless `verifyhost` is enabled in SSL context; all other backends don't care and could perform SNI validation regardless (hence OpenSSL works). T in turn onl...
by mike.dld
Tue Mar 22, 2016 9:20 am
Forum: Support
Topic: Transmission-daemon Ubuntu issues after 2.92 upgrade [SOLVED]
Replies: 3
Views: 5094

Re: Transmission-daemon Ubuntu issues after 2.92 upgrade

You may want to add `--log-debug --log-file /tmp/transmission.log` to daemon's arguments. Depending on Ubuntu version (which you didn't tell us) it needs to be added to either defaults file (via OPTIONS=) or systemd override file (via ExecStart=). Then try starting it as usual and see if the log fil...
by mike.dld
Tue Mar 22, 2016 8:53 am
Forum: Mac Support
Topic: TLS SNI problem on OS X
Replies: 19
Views: 25028

Re: TLS SNI problem on OS X

As I presume you have libcurl installed via homebrew as well, you could try rebuilding it to use the new openssl (if you didn't do that yet) and make T use it, and see if that helps: $ brew reinstall curl --with-openssl $ otool -L /usr/local/opt/curl/lib/libcurl.4.dylib (confirm that it depends on /...