Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Soft Auto Installer can automatically deploy applications on new hosting accounts provisioned through hosting control panels running Softaculous. It does so by tying into the Event system in Blesta to make an API call to Softaculous after an account is provisioned.

Tie-Ins*

WidgetsNav LinksClient CardsAutomation TasksEmail TemplatesACL PermissionsSearchEventsService Management
Status
titleNone
Status
titleNone

Status
titleNone

Status
colourGrey
titleNONE

Status
titleNone
Status
titleNone
Status
titleNone

Status
colourGreen
titleYES

Status
titleNone

* Plugins are powerful and are not limited to the tie-ins listed above, these are just some of the most common

...

ModuleSupported Version
cPanel4.5
Plesk4.8
CentOS Web Panel4.8
DirectAdmin4.9
Interworx4.11
ispmanager4.12

Installing Soft Auto Installer

...

Expand
titleCode used to generate the above list


Code Block
languagephp
linenumberstrue
<?php

$scripts_json = file_get_contents('https://s2.softaculous.com/a/softaculous/scripts.php?in=json');
$scripts = json_decode($scripts_json, true);
echo '<table style="border: 1px solid #eee; border-collapse: collapse;">
<tr>
	<td style="border: 1px solid #eee; padding:5px;"><b>Script Name</b></td>
	<td style="border: 1px solid #eee; padding:5px;"><b>Value for Script field for auto install</b></td>
</tr>';
foreach($scripts as $k => $v){
	echo '<tr>
		<td style="border: 1px solid #eee; padding:5px;">'.$v['name'].'</td>
		<td style="border: 1px solid #eee; padding:5px;">'.$v['name'].'</td>
	</tr>';
}
echo '</table>';



Have custom scripts? See the documentation at https://www.softaculous.com/docs/api/api/#list-scripts for the command to run on your Softaculous install to fetch your scripts.