when I close transmission and open it again so I don't see any torrent that I added before.
That one forget any list of torrent after restarting.
Transmission installed from scratch.
For example, uTorrent doesn't lost/forget any torrents if I restarting it.
OS X 10.2
transmission 2.76 (13785)
transmission losts torrents after shutdown
Re: transmission losts torrents after shutdown
the button "all" was pressed.

("все" = "all").
and:
any manipulations with all/filters etc buttons hasn't any positive effects.
I add any torrents - all are working before restart. there are not any torrents in transmission' list after restart transmission.

("все" = "all").
and:
Code: Select all
$ ls -la ~/Library/Application\ Support/Transmission/Torrents/
total 792
drwxr-xr-x@ 14 iron staff 476 10 янв 22:19 .
drwxr-xr-x@ 9 iron staff 306 10 янв 22:29 ..
-rw-------@ 1 iron staff 54623 10 янв 22:19 ColorCorr.3b82601a4795cb93.torrent
-rw-------@ 1 iron staff 62401 10 янв 19:55 Daun_Haus (2000;576p,x264-16crf,Rus,AC3-2.1).mkv.0aff55715339578b.torrent
-rw-------@ 1 iron staff 1823 10 янв 13:30 Hullfish S., Fowler J. - Color Correction for Video. Using Desktop Tools to Perfect Your Image-Focal Press - 2002.pdf.3008289794cc27ac.torrent
-rw-------@ 1 iron staff 21966 10 янв 19:57 Idi_i_smotri.iso.cdbe3190f636e8dd.torrent
$ users
iron
I add any torrents - all are working before restart. there are not any torrents in transmission' list after restart transmission.
Re: transmission losts torrents after shutdown
the "имя" word is translated as "name" one. (russian > english).x190 wrote:Try clearing the search field (top right).
Just I have Russian localization of transmission

It's hint and not word that was printed there with me.
#
I checked all moments in that app that I can checked. access rights in L/AS folder. Settings of transmission. Filters etc.
Re: transmission losts torrents after shutdown
maybe nobody don't understand my "writings"?
My English isn't very well one.
My English isn't very well one.
Re: transmission losts torrents after shutdown
I had the same problem, running transmission on freebsd 9.0 and could not find any settings for this in transmission but solved it this way:
1. i installed "rename" package
2. edited the /etc/rc.d/transmission script for startup and added:
echo -n "Reloading old torrents... "
/usr/local/bin/rename -s/.added//s -R <path to your>/torrents/*.added
echo "Done"
between #!/bin/sh and . /etc/rc.subr
I`ve noticed that transmission automatically renames .torrent files into .torrent.added files but when it searches for new torrents to add from the watch-dir it only searches for .torrent files so the idea was to rename all old torrents.added back to their original name before each restart of the daemon.
This also can be done with a for loop with mv and sed -s but it`s easier with rename .
Anyway, if there is a setting in transmission not involving recompile please let me know.
I personally use transmission on a separate "storage" server for torrents downloaded to be online 24/7, giving me extra ratio than using a windows client so loading after restart every torrent already downloaded and finished is necessary.
1. i installed "rename" package
2. edited the /etc/rc.d/transmission script for startup and added:
echo -n "Reloading old torrents... "
/usr/local/bin/rename -s/.added//s -R <path to your>/torrents/*.added
echo "Done"
between #!/bin/sh and . /etc/rc.subr
I`ve noticed that transmission automatically renames .torrent files into .torrent.added files but when it searches for new torrents to add from the watch-dir it only searches for .torrent files so the idea was to rename all old torrents.added back to their original name before each restart of the daemon.
This also can be done with a for loop with mv and sed -s but it`s easier with rename .
Anyway, if there is a setting in transmission not involving recompile please let me know.
I personally use transmission on a separate "storage" server for torrents downloaded to be online 24/7, giving me extra ratio than using a windows client so loading after restart every torrent already downloaded and finished is necessary.