I am having an issue with rutorrent...
When I went to create a torrent after setup, the progress bar ran forever and the torrent never completed...
So I changed conf.php to load mktorrent instead, and that works. The torrent gets created. But upon completion, I go to click the 'Save' button, but it is greyed out and not clickable.
Any help is appreciated.
Quote
When I went to create a torrent after setup, the progress bar ran forever and the torrent never completed...
So I changed conf.php to load mktorrent instead, and that works. The torrent gets created. But upon completion, I go to click the 'Save' button, but it is greyed out and not clickable.
Any help is appreciated.
Quote
<?php
// configuration parameters
@define('MAX_CONSOLE_SIZE',25,true);
$useExternal = "mktorrent"; // Valid choices:
// false - use internal realization (may be too slow for large files)
// "transmissioncli" - use program transmissioncli (see http://www.transmissionbt.com/)
// "transmissioncreate" - use program transmissioncreate (see http://www.transmissionbt.com/)
// "createtorrent" - use program createtorrent (see http://www.createtorrent.com)
// "mktorrent" - use program createtorrent (see http://mktorrent.sourceforge.net)
// "buildtorrent" - use program buildtorrent (see http://claudiusmaximus.goto10.org/cm/torrent.html)
$pathToCreatetorrent = ''; // Something like /bin/createtorrent, or /bin/transmissioncli. If empty, program will be found in PATH.
$pathToExternals["pgrep"] = ''; // Something like /usr/bin/pgrep. If empty, will be found in PATH.
?>
// configuration parameters
@define('MAX_CONSOLE_SIZE',25,true);
$useExternal = "mktorrent"; // Valid choices:
// false - use internal realization (may be too slow for large files)
// "transmissioncli" - use program transmissioncli (see http://www.transmissionbt.com/)
// "transmissioncreate" - use program transmissioncreate (see http://www.transmissionbt.com/)
// "createtorrent" - use program createtorrent (see http://www.createtorrent.com)
// "mktorrent" - use program createtorrent (see http://mktorrent.sourceforge.net)
// "buildtorrent" - use program buildtorrent (see http://claudiusmaximus.goto10.org/cm/torrent.html)
$pathToCreatetorrent = ''; // Something like /bin/createtorrent, or /bin/transmissioncli. If empty, program will be found in PATH.
$pathToExternals["pgrep"] = ''; // Something like /usr/bin/pgrep. If empty, will be found in PATH.
?>