Send emails when torrent is done – Windows & uTorrent

Here’s a snippet of PHP code to help you send emails from Windows machine when a torrent has downloaded through uTorrent.I am using Outlook.com to send and receive email but you can easily use GMail or any other internet mail service. You will need PHPMailer class $argOpts = “n:e:”;$argVal = getopt($argOpts);$torrent_name = $argVal[‘n’];$to_email = $argVal[‘e’];require(“phpmailer/class.phpmailer.php”);$mail = new PHPMailer();$mail->Username = “Your …

Read moreSend emails when torrent is done – Windows & uTorrent

Transmission Remote GUI enables you to control your torrents from Windows

I love Transmission BT client on my Ubuntu Server. However, I hate it’s web UI. Searching on the web I found an excellent UI for it. It’s called Transmission Remote GUI, and can be downloaded here. This UI is a “thick” client meaning you will need to connect to Transmission Server using this software installed on your client machine. In my …

Read moreTransmission Remote GUI enables you to control your torrents from Windows

Configuring headless transmission (torrent) client on Fedora 17

su yum install transmission yum install transmission-daemon make sure transmission-daemon service is not running service stop transmission-daemon edit configuration file to enable rpc and disable whitelist (or allow addresses in whitelist) vi /var/lib/transmission/.config/transmission/settings.json start transmission-daemon service start transmission-daemon Note: if you modify settings while transmission-daemon is running, changes won’t be saved! Therefore, first stop the service