Try modified postUpdate() inside /usr/local/lxlabs/kloxo/httpdocs/lib/client/lxclient.php to:
function postUpdate()
{
// We need to write because reads everything from the database.
$this->write();
if ($this->subaction === 'limit') {
$this->distributeChildQuota();
// MR -- php-fpm config mod update until client create 1 domain or more
lxshell_return("sh", "/script/fixphp", "--client={$this->nname}", "--nolog");
createRestartFile('php-fpm');
}
if ($this->subaction === 'change_plan') {
// MR -- php-fpm config mod update until client create 1 domain or more
lxshell_return("sh", "/script/fixphp", "--client={$this->nname}", "--nolog");
createRestartFile('php-fpm');
}
if ($this->subaction === 'resendwelcome') {
$this->send_welcome_f = 'On';
$this->notifyObjects('add');
$this->subaction = 'password';
}
}