Webuzo has about 482 Scripts and is currently growing. To get the IDs of the webuzo scripts, use the Webuzo script ID API. The API response will consist of the key "scripts" as an array of the Webuzo Scripts available for installation, which are listed according to their script IDs.
For more information about webuzo, see the Webuzo Main Page. For creating Virtual Private Servers with webuzo, you can refer this Creating OS template guide.
HTTP Request
https://hostname:4085/index.php?act=webuzo
Parameters
Name | Method | Value | Description | Required |
---|---|---|---|---|
act | GET | webuzo | The action will return all the scripts information | Yes |
Sample Code
<?php
require_once('/usr/local/virtualizor/sdk/admin.php');
$key = 'your_api_key';
$pass = 'your_api_pass';
$ip = 'your_server_ip';
$admin = new Virtualizor_Admin_API($ip, $key, $pass);
$output = $admin->webuzo_scripts();
print_r(json_encode($output));
?>
Output
{
"title": "Webuzo Settings",
"scripts": {
"26": {
"sid": 26,
"parent": "0",
"name": "WordPress",
"softname": "wp",
"type": "php",
"category": "blogs"
},
"18": {
"sid": 18,
"parent": "413",
"name": "Joomla 2.5",
"softname": "joomla16",
"type": "php",
"category": "cms"
},
"389": {
"sid": 389,
"parent": "0",
"name": "AbanteCart",
"softname": "abante",
"type": "php",
"category": "ecommerce"
},
"72": {
"sid": 72,
"parent": "0",
"name": "PrestaShop",
"softname": "presta",
"type": "php",
"category": "ecommerce"
},
"413": {
"sid": 413,
"parent": "0",
"name": "Joomla",
"softname": "joomla30",
"type": "php",
"category": "cms"
},
"70": {
"sid": 70,
"parent": "499",
"name": "OpenCart 1.5",
"softname": "ocart",
"type": "php",
"category": "ecommerce"
},
"30": {
"sid": 30,
"parent": "543",
"name": "Drupal 7",
"softname": "drupal",
"type": "php",
"category": "cms"
},
"2": {
"sid": 2,
"parent": "0",
"name": "phpBB",
"softname": "phpbb",
"type": "php",
"category": "forums"
}
}