Update DomainIsCreatedListener.php

This commit is contained in:
Bozhidar Slaveykov 2024-04-06 16:46:50 +03:00
parent 7555506b0c
commit 16d64dc52a

View file

@ -31,7 +31,6 @@ class DomainIsCreatedListener
if (! $findHostingSubscription) { if (! $findHostingSubscription) {
return; return;
} }
$findHostingPlan = HostingPlan::where('id', $findHostingSubscription->hosting_plan_id)->first(); $findHostingPlan = HostingPlan::where('id', $findHostingSubscription->hosting_plan_id)->first();
if (! $findHostingPlan) { if (! $findHostingPlan) {
return; return;
@ -41,14 +40,14 @@ class DomainIsCreatedListener
return; return;
} }
$phyreShellExecutor = new \Modules\Microweber\Shell\Adapters\PhyreShellExecutor(); // $phyreShellExecutor = new \Modules\Microweber\Shell\Adapters\PhyreShellExecutor();
$installationType = 'symlink'; $installationType = 'symlink';
$installationLanguage = 'bg'; $installationLanguage = 'bg';
$installationTemplate = 'shopmag'; $installationTemplate = 'shopmag';
$install = new \MicroweberPackages\SharedServerScripts\MicroweberInstaller(); $install = new \MicroweberPackages\SharedServerScripts\MicroweberInstaller();
$install->setShellExecutor($phyreShellExecutor); // $install->setShellExecutor($phyreShellExecutor);
$install->setChownUser($findDomain->domain_username); $install->setChownUser($findDomain->domain_username);
$install->enableChownAfterInstall(); $install->enableChownAfterInstall();