rss plugin rss manager save as

somus1735

Member
May 25, 2018
833
0
16
Helo!
I have set up my rtorrent+rutorrent with rss feeds and all downloads works well. My problem is when i use the save as in rss manager and set a custom directory the file is downloading fine to that directory but it won't seed the torrent when download are done the torrent is pausing ?. And in general save as the file path changes to ./filename huh.gif
EX
1. Download save as /glftpd/site/Torents/Naruto_720p_HD.mkv This works the file downloads here.
When downloading are done save as changes so that the torrent cant seed.
2. Download done save as ./Naruto_720p_HD.mkv This does not work torrent cant seed huh.gif.

Som thing is wrong with the rss plugin and save as file path
Hopes som one can explain this and how i can fix this if it is posible or is this a bug.
 

somus1735

Member
May 25, 2018
833
0
16
What do you mean under the './' here? Path must be absolute.
I mean that the path changes to this "./Naruto_720p_HD.mkv " when the download is done automatically the rss plugin does this huh.gif and i don't want that to happen i want it to keep the path i set in the save as box in rss manager for that series. hope this explains.
 

dsouvik215

Member
May 25, 2018
896
0
16
Hmm this is weird in rss manager under Label: i typed in ANIME to test and when the rss download was ready downloading to path
Directory: /glftpd/site/Torents/Naruto_720p_HD.mkv i checked the general setting off the torrent.
The save as: had change from ./Naruto_720p_HD.mkv to ANIME/Naruto_720p_HD.mkv but the save as: should bee /glftpd/site/Torents/Naruto_720p_HD.mkv. So the next time in rss manager under Label: i typed in /glftpd/site/Torents/ to test.

when the rss download was ready downloading to path Directory /glftpd/site/Torents/Naruto_720p_HD.mkv again i checked the general setting off the torrent.
And now the save as: has change to %2Fglftpd%2Fsite%2FDOWNLOADs%2FTORRENTs%2F weird huh.gif all forward slashes are %2F whats going on?

it seams to me like the option Label: in rss manager tells rtorrent the path directory to the file i download to but the option Label: cant handle forward slashes or is ther a way to type the path without the slashes.

As it is now the rss plugin manager in rutorrent can download what i want to the directory i want automatically but it cant seed my rss torrents automatically when downloaded. Because the path to the torrent file are not the same in general save as: as it was when the torrent started to download
hope this explains it better
 

jith45

Member
May 25, 2018
960
0
16
Can't understand, what is you mean, sorry. Step by step, and simple - what is you doing, and what is your problem? What about ruTorrent version? What about used plugins?
 

somus1735

Member
May 25, 2018
833
0
16
Can't understand, what is you mean, sorry. Step by step, and simple - what is you doing, and what is your problem? What about ruTorrent version? What about used plugins?
Ok this is hard to explain obviously so i am going to post some pictures to. The version of rtorrent is 3.2 with all the plugins.

1. The first picture show the rss manager setup
http://dl.dropbox.com/u/39513012/rss%20manager.jpg

2. This picture show when rss manager automatically picks up the feed and downloading it works well and the path in save as is correct.
http://dl.dropbox.com/u/39513012/Download.jpg

3. This last one shows when the download is ready and the path in save as has changed and are wrong so the torrent wont automatically seed hope you understand now.
http://dl.dropbox.com/u/39513012/Download%20Ready.jpg
 

jith45

Member
May 25, 2018
960
0
16
system.method.set_key = event.download.finished,move_complete,"d.set_directory=$d.get_custom1= ;execute=mv,-u,$d.get_base_path=,$d.get_custom1="​
And? What do you want?
ruTorrent store torrent's label into d.get_custom1. In encrypted form.
 

somus1735

Member
May 25, 2018
833
0
16
And? What do you want?
ruTorrent store torrent's label into d.get_custom1. In encrypted form.
I don now what you mean with that code it looks like it moves download files from custom1 is it wrong ??

I whant my rss downloaded torrent to seed automatically after download because i what to gain ratio on them.
As it is now they are downloaded automatically to /glftpd/site/DOWNLOAD/TORRENTs this is the right place.The problem is that they dont seed automatically form that path and i dot know how to fix this.
And thanks for trying to help i am a nob at rss stuff.
 

jith45

Member
May 25, 2018
960
0
16
system.method.set_key = event.download.finished,move_complete,"d.set_directory=$d.get_custom1= ;execute=mv,-u,$d.get_base_path=,$d.get_custom1="​
I don now what you mean with that code it looks like it moves download files from custom1 is it wrong ??​


Yet once: ruTorrent use d.get_custom1 for storing torrent's label. Label is stored in encrypted form. Your code in rtorrent.rc use d.get_custom1 for storing path.
I whant my rss downloaded torrent to seed automatically after download because i what to gain ratio on them.​


Remove this code from rtorrent.rc. Or change it for using named customs (d.get_custom=custom_name and d.set_custom=custom_name,custom_value).
 

somus1735

Member
May 25, 2018
833
0
16


Yet once: ruTorrent use d.get_custom1 for storing torrent's label. Label is stored in encrypted form. Your code in rtorrent.rc use d.get_custom1 for storing path.


Remove this code from rtorrent.rc. Or change it for using named customs (d.get_custom=custom_name and d.set_custom=custom_name,custom_value).
Yes your right when i Removed that line the rss feeds worked perfect cheesy.gif. But i need that code for my watch directory to work so how do i change it using named custom i dont know where to put this (d.get_custom=custom_name and d.set_custom=custom_name,custom_value) in the code can you giv me an example from my torrent.rc please
 

dsouvik215

Member
May 25, 2018
896
0
16
But i need that code for my watch directory to work so how do i change it using named custom i dont know where to put this (d.get_custom=custom_name and d.set_custom=custom_name,custom_value) in the code can you giv me an example from my torrent.rc please
I have already given it to you. Yet once: replace in your code d.get_custom1= to d.get_custom=custom_name. And d.set_custom1=custom_value to d.set_custom=custom_name,custom_value.
 

somus1735

Member
May 25, 2018
833
0
16
I have already given it to you. Yet once: replace in your code d.get_custom1= to d.get_custom=custom_name. And d.set_custom1=custom_value to d.set_custom=custom_name,custom_value.
i have done as i think you mean but it does not work for me get error in rutorrent (command on torrent creation failed:missing value argument)and the torrent in watch directory dont download. huh.gif
Is this code right?

schedule = watch_directory_2,10,10,"load_start=/glftpd/site/DOWNLOADs/WHATCH/Shippuuden/*.torrent,d.set_custom=dir,/glftpd/site/MY-MEDIA/ANIME/ANIME/Naruto-Shippuuden/"


system.method.set_key = event.download.finished,move_complete,"d.set_directory=$d.get_custom=dir ;execute=mv,-u,$d.get_base_path=,$d.get_custom=dir"
 

jith45

Member
May 25, 2018
960
0
16
Try

schedule = watch_directory_2,10,10,"load_start=/glftpd/site/DOWNLOADs/WHATCH/Shippuuden/*.torrent,\"d.set_custom=dir,/glftpd/site/MY-MEDIA/ANIME/ANIME/Naruto-Shippuuden/\""
 

somus1735

Member
May 25, 2018
833
0
16
Try

schedule = watch_directory_2,10,10,"load_start=/glftpd/site/DOWNLOADs/WHATCH/Shippuuden/*.torrent,\"d.set_custom=dir,/glftpd/site/MY-MEDIA/ANIME/ANIME/Naruto-Shippuuden/\""
Yes this code works i was so happy until i tried out my rss feeds and the old problem was back. As son as i put this code in my torrent.rc my rss feeds get the weird path problem and wont seed it seams that it does not mater if i use cusom1 or custom or is this code wrong?.

system.method.set_key = event.download.finished,move_complete,"d.set_directory=$d.get_custom=dir ;execute=mv,-u,$d.get_base_path=,$d.get_custom=dir"
 

jith45

Member
May 25, 2018
960
0
16
system.method.set_key = event.download.finished,move_complete,"d.set_directory=$d.get_custom=dir ;execute=mv,-u,$d.get_base_path=,$d.get_custom=dir"
First of all, for 0.8.6 this code is wrong. You must move files first, and set directory only after that.
 

somus1735

Member
May 25, 2018
833
0
16
First of all, for 0.8.6 this code is wrong. You must move files first, and set directory only after that.
Ok how do i do that i am not so god at coding so i hope you can help me with that smiley.gif.

And i wonder if i upgrade to rtorent v0.8.9 does the existing code work there and if there are other advantages to upgrade?.