requirements:
-rtorrent 0.7.7
-some webserver
-php5, with the following extensions:
 -xsl
 -xmlrpc

installation:

-open the includes/config.php.inc, and edit the next lines:
 -$abs_path
 -$domain
 -$subdomain
 -$site_path
 -$include_path (if you move the includes directory)
 -if your php interpreter does not handle .html files (only .php) set the $default_ext variable to "php", and rename the index.html to index.php

-open .rtorrent.rc, and edit them (for each user)
 -add this line to your .rtorrent.rc "scgi_port = 127.0.0.1:12345" where 12345 can be replaced by your choice, and restart rtorrent
 -if you have more than one user, set a different port for each user's .rtorrent.rc file

-adding users:
 -find row 44, and change it:
 -replace "username" with the actual linux username
 -replace "sha1has of the password" with thre hash of the choosen password for the webui (you can generate the sha1 hash here => http://www.johnmaguire.us/tools/hashcalc/index.php)
 -replace "36100", with the port, you've set in the .rtorrent.rc file
 -if you have more than one user, you have to do these steps, for each one of them, sop you'll get something like this:
	$users = array(
		"user1"		=> array( "pass" => "1234567890abcdef1234567890abcdef12345678", "port"	=> "12345" ),
		"user2"		=> array( "pass" => "1234567890abcdef1234567890abcdef12345678", "port"	=> "12346" ),
		"user3"		=> array( "pass" => "1234567890abcdef1234567890abcdef12345678", "port"	=> "12347" ),
	);

-all users, using this webui will need an "!rtwi_files" directory into their download directory (set by "directory = some/path" in the .rtorrent.rc) with 0777 rights

bug reports, whishlist, suggestions, anything: ghudiczius@gmail.com

p.s.: sorry, for this loosy manual, and my even worse english :)