Search found 25 matches
- Sun Jun 10, 2012 12:46 am
- Forum: Support
- Topic: Jumpy download speeds
- Replies: 4
- Views: 6123
Re: Jumpy download speeds
Yes. Any limits applied to upload will affect download speed and the graph you are seeing resembles backing off of download speed by bittorrent. (also cas I think you need to turn on daylight savings mode in phpbb :D its saying its 12.25am but its 1.25am :D) Is this only on Deluge than? I never got...
- Sun Jun 10, 2012 12:23 am
- Forum: Support
- Topic: Jumpy download speeds
- Replies: 4
- Views: 6123
Re: Jumpy download speeds
I am guessing that is due to the bittorent protocol throttling download speed because you have capped/maxed out your upload speed. Upload is set to half my max upload speed screenshot.438.jpg Is this what you mean? (also cas I think you need to turn on daylight savings mode in phpbb :D its saying i...
- Sat Jun 09, 2012 10:36 pm
- Forum: Support
- Topic: Jumpy download speeds
- Replies: 4
- Views: 6123
Jumpy download speeds
Hey all, ive been testing my leeching speed with Deluge for sometime now and I got a hold of the ubuntu torrent and tested leeching it (with it been a super fast torrent) I leeched it with utorrent and I maxed out all the way to the end (about 6.3mb) am limited to 50mb after ive leeching so much so ...
- Sat Jun 09, 2012 10:27 pm
- Forum: Plugins
- Topic: [Plugin] Copy Completed plugin
- Replies: 32
- Views: 118553
Re: [Plugin] Copy Completed plugin
Testing on Windows reveals that paths using single backslash will need escaped otherwise python will consider it invalid. The other option is to use forward slashes as the separator. e.g. the path C:\Users\User\Downloads should instead be C:\\Users\\User\\Downloads or C:/Users/User/Downloads Thanks...
- Sat May 12, 2012 11:36 pm
- Forum: Plugins
- Topic: Copy Script (need help)
- Replies: 25
- Views: 24240
Re: Copy Script (need help)
Hey as for the .bat window showing all the time I found this http://superuser.com/questions/140047/how-to-run-a-batch-file-without-launching-a-command-window Save the following as wscript, for instance, hidecmd.vbs after replacing "testing.bat" with your batch file's name. Set oShell = Cre...
- Fri May 11, 2012 9:01 pm
- Forum: Plugins
- Topic: Copy Script (need help)
- Replies: 25
- Views: 24240
Re: Copy Script (need help)
Not necessarily. If you can setup an FTP server on your Linux box, you could use FTPGrab to connect from your Windows machine to your seedbox every so often and grab any new files it sees in the completed directory. You'll just need to have python 2.x installed on your Windows machine. Maybe that w...
- Fri May 11, 2012 2:47 pm
- Forum: Plugins
- Topic: Copy Script (need help)
- Replies: 25
- Views: 24240
Re: Copy Script (need help)
It's all good. SCP stands for "Secure copy" and is usually found on *nix based computers, installed with ssh. In my case, I installed the cygwin suite, which allows you to install Linux like programs on Windows, and set up the ssh service through that. But, like I said earlier, this is ju...
- Fri May 11, 2012 2:31 pm
- Forum: Plugins
- Topic: Copy Script (need help)
- Replies: 25
- Views: 24240
Re: Copy Script (need help)
To be honest, I just got my server set up, but the script I just created does work for me (I only have it copy certain files based on the files' location). Here's a basic copy script using scp: #!/bin/bash dest_host='username@example.org' dest_dir='/cygdrive/e/Leeching/Done' srce_file=$3/$2 dest_di...
- Fri May 11, 2012 1:30 am
- Forum: Plugins
- Topic: Copy Script (need help)
- Replies: 25
- Views: 24240
Re: Copy Script (need help)
It is possible to copy from the Linux box to your home Windows box. You will have to install a file service of some sort on you Windows machine, however, either FTP, SFTP, SCP, RSYNC, etc. Depending on how secure you want to be and how much time you want to take to set it all up, we can figure some...
- Thu May 10, 2012 8:10 pm
- Forum: Plugins
- Topic: Copy Script (need help)
- Replies: 25
- Views: 24240
Re: Copy Script (need help)
Ah its not working mate (its still missing the odd random one "ie copying a empty folder". I have abit of an odd question for you here :P I have deluge on my debian server I was planing on using it as a seedbox but could I use this script on that to copy the finished torrents to my home pc...