Search found 306 matches

by mike.dld
Tue Jul 10, 2018 5:27 am
Forum: Mac Requests
Topic: Again, not enough space
Replies: 3
Views: 29826

Re: Again, not enough space

Is there any other drive in your system that is [nearly] full? Check if you have incomplete directory enabled and pointing there.
by mike.dld
Mon Jun 25, 2018 3:14 pm
Forum: Support
Topic: Lots of errors when running transmission
Replies: 2
Views: 2656

Re: Lots of errors when running transmission

In general, the error codes seem to point to issues with random numbers generation. You could check if /dev/random and/or /dev/urandom devices are missing or have improper permissions.
by mike.dld
Mon Jun 25, 2018 3:08 pm
Forum: Support
Topic: Lots of errors when running transmission
Replies: 2
Views: 2656

Re: Lots of errors when running transmission

The crypto-utils-openssl.c file in 2.92 only has 335 lines of code. The errors in your log are from lines 345, 385, and 407, which means that your version is patched. Either provide more information (where did you install this version from, on what system), or ask the actual author of the changes ma...
by mike.dld
Tue Jun 12, 2018 7:08 am
Forum: Mac Support
Topic: Downloaded File does not match SHA-256 Checksum
Replies: 1
Views: 2925

Re: Downloaded File does not match SHA-256 Checksum

Just tried it myself and SHA256 matches what's on https://transmissionbt.com/download/ (2cae915ae0e37fc5983406ca7fbd53a054a7153d3bfd7a6cef117a8a28d8a78a). Try re-downloading. Make sure that there's only a single "Transmission-2.94.dmg" file in your downloads folder, i.e. you didn't downloa...
by mike.dld
Fri Jun 01, 2018 8:40 am
Forum: Support
Topic: transmission-daemon unable to send Email?
Replies: 6
Views: 4325

Re: transmission-daemon unable to send Email?

Exit code 127 usually means that some program file wasn't found while being executed. Add `env` command to your script to see what environment it's being executed in and whether PATH environment variable contains necessary paths so that all the needed programs are accessible to the script (and other...
by mike.dld
Wed May 30, 2018 11:04 am
Forum: Support
Topic: Error: Read-only file system
Replies: 0
Views: 1913

Re: Error: Read-only file system

It means exactly what it says: you've specified complete/incomplete directory path that resides on filesystem that is mounted read-only. Check the output of `mount` to confirm. If this is not expected, it could be that your operating system re-mounted it from read-write to read-only because of files...
by mike.dld
Tue May 29, 2018 7:09 am
Forum: Support
Topic: transmission-daemon unable to send Email?
Replies: 6
Views: 4325

Re: transmission-daemon unable to send Email?

Add a few lines to the beginning of your script that may help you figure it out:

Code: Select all

#!/bin/sh
exec >/tmp/script.log 2>&1
set -x
echo "ok,Done" | mutt -s "Done!" xxxmail@gmail.com
echo "test ok in" >>/tmp/a.txt
Then check out the /tmp/script.log file.
by mike.dld
Sun May 27, 2018 11:04 am
Forum: Windows Support
Topic: Where are the Transmission logs in Windows?
Replies: 1
Views: 6212

Re: Where are the Transmission logs in Windows?

By default on Windows, Transmission sends log messages to a system debug facility. You could view those messages with e.g. DebugView . When using the daemon, you could also pass it the -e/--logfile <path> arguments to make it log to a file, and use --log-error/--log-info/--log-debug to control the v...
by mike.dld
Sun May 27, 2018 10:53 am
Forum: Windows Support
Topic: Portable version update
Replies: 1
Views: 3319

Re: Portable version update

We're not providing an official portable version ourselves. Please seek for support on portableapps.com or elsewhere.
by mike.dld
Sun May 27, 2018 10:51 am
Forum: Support
Topic: associate transmission-gtk with web browser
Replies: 2
Views: 3343

Re: associate transmission-gtk with web browser

The suggestion you found was misleading (or you didn't get it right). The line that you quote should already be present in the proper place --- transmission-gtk.desktop file, and should look like this: MimeType=application/x-bittorrent;x-scheme-handler/magnet; It tells the system that Transmission G...
by mike.dld
Sun May 27, 2018 10:35 am
Forum: Mac Support
Topic: How do I search?
Replies: 1
Views: 6196

Re: How do I search?

You use your favorite internet search engine to do that. Transmission has no means of searching for torrents; some other torrent clients do, if this is a deal breaker for you.
by mike.dld
Sun May 27, 2018 10:26 am
Forum: Support
Topic: Main Window Small, Cannot be resized
Replies: 2
Views: 2199

Re: Main Window Small, Cannot be resized

Menu Transmisison -> Preferences... -> General tab -> Auto resize: [x] Automatically size window to fit all transfers.
by mike.dld
Mon May 14, 2018 10:32 am
Forum: Support
Topic: Daemon service not start Windows 10
Replies: 3
Views: 3115

Re: Daemon service not start Windows 10

Does Qt client work for you? Does running the daemon in foreground (not as a service) work?