In this guide i will explain the installation procedure, how to use the plugin and how to configure the fileupload plugin.
The current version comes with a set of predefined upload service providers which are available to change in conf.php. This set is the available upload services from plowshare trunk version. Adding services is described later in this post.
Currently supported file-sharing services:
Code:
cd /path/to/rutorrent/plugins
svn co http://svn.rutorrent.org/svn/filemanager/trunk/fileupload
chmod 775 fileupload/scripts/upload
Plugin configuration (conf.php):
The default conf.php should look like this:
Code:
$services = array( 'rapidshare' => array( 'enabled' => true,
'account' => true,
'login' => '',
'password' => ''),
'megaupload' => array( 'enabled' => true,
'login' => '',
'password' => '',
'email' => ''),
'zshare' => array('enabled' => true),
...
You can choose what upload services are available to rutorrent users by setting the 'enabled' option to true or false
Services which have enabled set to true will appear the rutorrent GUI - Settings > File Upload dialog and in the Upload to... filemanager context menu.
You can also add the 'account' => true, to (each/required) service to force users to use an account
You should check out the options plowup modules, if they support accounts you can add account support to upload services by adding:
Code:
'login' => '',
'password' => '',
to your service.
Important: login and password fields must be kept empty in conf.php
The GUI:
You can configure the plugin options by going to Settings > File Upload panel. Here you will find all the enabled services with their options: login, password, e-mail address.
Note: You can do anonymous uploads by not filling the Login or Password fields of a service. The only exception right now is RapidShare - it doesn't have anonymous upload anymore, that's why it has 'account' => true, set in conf.php
Services which have 'account' => true, set in conf.php will force users to use a login and a password else the upload service in the context menu will be disabled.
Hope this guide helps and sorry for no picture.
The current version comes with a set of predefined upload service providers which are available to change in conf.php. This set is the available upload services from plowshare trunk version. Adding services is described later in this post.
Currently supported file-sharing services:
- 1fichier
- rapidshare
- megaupload
- zshare
- 2shared
- sendspace
- fileserve
- filesonic
- wupload
- Plowshare - http://code.google.com/p/plowshare/
- FileManager plugin latest trunk - http://forums.rutorrent.org/index.php?topic=1405.0
Code:
cd /path/to/rutorrent/plugins
svn co http://svn.rutorrent.org/svn/filemanager/trunk/fileupload
chmod 775 fileupload/scripts/upload
Plugin configuration (conf.php):
The default conf.php should look like this:
Code:
$services = array( 'rapidshare' => array( 'enabled' => true,
'account' => true,
'login' => '',
'password' => ''),
'megaupload' => array( 'enabled' => true,
'login' => '',
'password' => '',
'email' => ''),
'zshare' => array('enabled' => true),
...
You can choose what upload services are available to rutorrent users by setting the 'enabled' option to true or false
Services which have enabled set to true will appear the rutorrent GUI - Settings > File Upload dialog and in the Upload to... filemanager context menu.
You can also add the 'account' => true, to (each/required) service to force users to use an account
You should check out the options plowup modules, if they support accounts you can add account support to upload services by adding:
Code:
'login' => '',
'password' => '',
to your service.
Important: login and password fields must be kept empty in conf.php
The GUI:
You can configure the plugin options by going to Settings > File Upload panel. Here you will find all the enabled services with their options: login, password, e-mail address.
Note: You can do anonymous uploads by not filling the Login or Password fields of a service. The only exception right now is RapidShare - it doesn't have anonymous upload anymore, that's why it has 'account' => true, set in conf.php
Services which have 'account' => true, set in conf.php will force users to use a login and a password else the upload service in the context menu will be disabled.
Hope this guide helps and sorry for no picture.