Add an FTP account.
Edit a FTP account.
List FTP accounts.
array ( 'status' => 0, 'payload' => array ( 0 => array ( 0 => 'ftp', 1 => 'ftp@example.com', ), ), )
List deletable FTP accounts.
array ( 'status' => 0, 'payload' => array ( ), )
List FTP Accounts.
array ( 'status' => 0, 'payload' => array ( 0 => array ( 'username' => 'ftp', 'homedir' => '/home/example', 'login_count' => '0', 'ismaster' => true, 'fulluser' => 'ftp@example.com', ), ), )
Controller: Ftp
listAction: add
Add an FTP account.
Input Parameters
Username of FTP user currently logged in
Confirm the password field by providing it again. Must match the password provided.
/home/example
Action: edit
Edit a FTP account.
Input Parameters
ftp
Confirm the password field by providing it again. Must match the password provided.
/home/example
Action: list
MESSAGE: 2010-11-18 use listFtpAccounts
List FTP accounts.
Example Output
array ( 'status' => 0, 'payload' => array ( 0 => array ( 0 => 'ftp', 1 => 'ftp@example.com', ), ), )Action: listDeletable
List deletable FTP accounts.
Example Output
Action: listFtpAccounts (Added in version 4.8.0-393)
List FTP Accounts.
Example Output
array ( 'status' => 0, 'payload' => array ( 0 => array ( 'username' => 'ftp', 'homedir' => '/home/example', 'login_count' => '0', 'ismaster' => true, 'fulluser' => 'ftp@example.com', ), ), )