Group: Member 
Post Group: Newbie
Posts: 5
Status: 
|
Hi,
I have an installer script that installs magento and a extension it was running great with installs in 5 - 10 seconds. Now after June 11 our WHM auto updated to Softaculous version 4.2.5 and installs take over 5 minutes and server load goes way up.
Has anyone else had this issue and know a fix? I would like to downgrade to 4.2.4 for now but can't find any info on how to do this.
More Info:
Server is a WHM/Cpanel we are using the Softaculous API. It also started complaining about no table prefix, so we added "mg" to make that error stop. Our api code is below:
require_once('softaculousapi/sdk.php');
$softobject = new Softaculous_API();
// login info
$softobject->login = "https://$username:$password@$domainname:2083/frontend/x3/softaculous/index.live.php";
// magento admin password
$magepass = RandomCode(5);
// install array variables
$data = array(
"admin_fname" => $first_name,
"admin_lname" => $last_name,
"softdomain" => $domainname,
"softdirectory" => "",
"dbprefix" => "mg",
"admin_username" => "admin",
"admin_pass" => $magepass,
"admin_email" => $email,
"dbusername" => "mage",
"dbuserpass" => $magepass,
"site_name" => "Sales Igniter Rental System",
"softdb" => "mage",
"cron_min" => "*/30",
"cron_hour" => "*",
"cron_day" => "*",
"cron_month" => "*",
"cron_weekday" => "*",
);
// install Magento, pass in array variables
$install = $softobject->install(67, $data);
|