Search found 24 matches

by Cha0s
Sat Oct 21, 2017 2:09 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Migrate uTorrent to Deluge

The script is written in PHP, so you can run it pretty much on any OS that PHP supports. If you are familiar with basic PHP you should be able to make the script work by editing it to fit your needs. By default it only works on windows (it uses the wfio php module for windows). The original script (...
by Cha0s
Sat Oct 21, 2017 12:15 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Migrate uTorrent to Deluge

I have uploaded the script to GitHub so it won't get 'lost' again :)
https://github.com/RLoaD/utorrent-to-deluge

I don't know if it still works or not though. I haven't used Deluge for ages (too slow UI for my amount of torrents)
by Cha0s
Mon Jan 19, 2015 12:03 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Migrate uTorrent to Deluge

Hello, Can you re-run the script but with $DRYRUN = TRUE; in settings.php ? And then paste the output here. I believe the error might be in the command passed to deluge-console.exe because there are 2 conditions before that to check if the folder actually exists so if those checks pass, then the dow...
by Cha0s
Fri Oct 03, 2014 9:35 am
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Migrate uTorrent to Deluge

There was a problem with my server. Those trying to download my script you can try again now :)
by Cha0s
Tue Sep 16, 2014 5:22 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Help on Script to auto add torrents from uTorrent/BitTor

@Raen: Could php version might have something to do with it? :) I have these installers of PHP saved: php-5.3.23-Win32-VC9-x86.msi and php-5.2.17-nts-Win32-VC6-x86.msi (I've re-installed the OS since then) It's not a PHP version issue. Most likely deluged.exe is not running that's why it wouldn't a...
by Cha0s
Tue Sep 16, 2014 5:20 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Help on Script to auto add torrents from uTorrent/BitTor

Hello guys, It seems that there is an interest on the script (I wonder if it has anything to do with uTorrent/BitTorrent becoming adwares in recent versions :P) so I tried to prepare a new version with some fixes so that it would work on Windows out of the box (well... at least in theory :P). Unfort...
by Cha0s
Wed Jul 02, 2014 10:31 am
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Help on Script to auto add torrents from uTorrent/BitTor

Hello Raen, According to the error you get, it looks that maybe your uTorrent resume.dat file is not getting read correctly so it cannot find any torrents to add to Deluge. Have you edited the configuration variables at the top of the script to match your paths? By the way every once and a while tha...
by Cha0s
Fri Jan 24, 2014 4:29 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Help on Script to auto add torrents from uTorrent/BitTor

You can ignore PHP's warnings, they are just informational. As I mentioned this script was written in a hurry to simply migrate my uTorrent torrents to Deluge, so I didn't put much work in it. But the real error seems to be with deluge. It looks that the syntax and the executable for adding torrents...
by Cha0s
Fri Jan 24, 2014 2:06 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Help on Script to auto add torrents from uTorrent/BitTor

Change the current directory to where the resume_decode.php is located first and then run the command.

eg:

Code: Select all

cd /Users/user/Desktop/utorrent-to-deluge/
php /Users/user/Desktop/utorrent-to-deluge/resume_decode.php
by Cha0s
Fri Jan 24, 2014 1:14 pm
Forum: Development
Topic: Migrate uTorrent to Deluge
Replies: 42
Views: 63717

Re: Help on Script to auto add torrents from uTorrent/BitTor

/usr/local/php5 is a directory as the error suggests. You need to find the php CLI executable. Try: php /Users/user/Desktop/utorrent-to-deluge/resume_decode.php On linux you can use 'which php' and will give you the full path to php cli executable. I don't use OSX so I don't know how to find the exe...