mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-14 01:06:09 +01:00
speed up the process of download for wp backups
This commit is contained in:
@@ -564,6 +564,13 @@
|
||||
</h3>
|
||||
<div class="example-box-wrapper">
|
||||
|
||||
<div class="alert alert-warning">
|
||||
<p>This feature will create a backup of your WordPress website. If you want
|
||||
to schedule remote backups of your entire site, including email accounts
|
||||
and DNS records, please <a
|
||||
href="/backup/OneClickBackups">click here.</a></p>
|
||||
</div>
|
||||
|
||||
<form name="websiteCreationForm" action="/" id="createPackages"
|
||||
class="form-horizontal bordered-row panel-body">
|
||||
<div ng-hide="installationDetailsForm" class="form-group">
|
||||
|
||||
@@ -197,15 +197,15 @@
|
||||
|
||||
<div ng-hide="DomainCreateForm" ng-hide="installationDetailsForm"
|
||||
class="form-group">
|
||||
<label class="col-sm-3 control-label">{% trans "Additional Features" %}</label>
|
||||
<div class="col-sm-9">
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
<input ng-model="sslCheck" type="checkbox" value="">
|
||||
SSL
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
{# <label class="col-sm-3 control-label">{% trans "Additional Features" %}</label>#}
|
||||
{# <div class="col-sm-9">#}
|
||||
{# <div class="checkbox">#}
|
||||
{# <label>#}
|
||||
{# <input ng-model="sslCheck" type="checkbox" value="">#}
|
||||
{# SSL#}
|
||||
{# </label>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
<label class="col-sm-3 control-label"></label>
|
||||
<div class="col-sm-9">
|
||||
<div class="checkbox">
|
||||
|
||||
@@ -164,15 +164,15 @@
|
||||
</div>
|
||||
|
||||
<div ng-hide="installationDetailsForm" class="form-group">
|
||||
<label class="col-sm-3 control-label">{% trans "Additional Features" %}</label>
|
||||
<div class="col-sm-9">
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
<input ng-model="sslCheck" type="checkbox" value="">
|
||||
SSL
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
{# <label class="col-sm-3 control-label">{% trans "Additional Features" %}</label>#}
|
||||
{# <div class="col-sm-9">#}
|
||||
{# <div class="checkbox">#}
|
||||
{# <label>#}
|
||||
{# <input ng-model="sslCheck" type="checkbox" value="">#}
|
||||
{# SSL#}
|
||||
{# </label>#}
|
||||
{# </div>#}
|
||||
{# </div>#}
|
||||
<label class="col-sm-3 control-label"></label>
|
||||
<div class="col-sm-9">
|
||||
<div class="checkbox">
|
||||
|
||||
@@ -2224,7 +2224,7 @@ class WebsiteManager:
|
||||
execPath = "/usr/local/CyberCP/bin/python " + virtualHostUtilities.cyberPanel + "/plogical/virtualHostUtilities.py"
|
||||
execPath = execPath + " createVirtualHost --virtualHostName " + domain + \
|
||||
" --administratorEmail " + adminEmail + " --phpVersion '" + phpSelection + \
|
||||
"' --virtualHostUser " + externalApp + " --ssl " + str(data['ssl']) + " --dkimCheck " \
|
||||
"' --virtualHostUser " + externalApp + " --ssl " + str(1) + " --dkimCheck " \
|
||||
+ str(1) + " --openBasedir " + str(data['openBasedir']) + \
|
||||
' --websiteOwner "' + websiteOwner + '" --package "' + packageName + '" --tempStatusPath ' + tempStatusPath + " --apache " + apacheBackend + " --mailDomain %s" % (
|
||||
mailDomain)
|
||||
@@ -2326,7 +2326,7 @@ class WebsiteManager:
|
||||
execPath = "/usr/local/CyberCP/bin/python " + virtualHostUtilities.cyberPanel + "/plogical/virtualHostUtilities.py"
|
||||
|
||||
execPath = execPath + " createDomain --masterDomain " + masterDomain + " --virtualHostName " + domain + \
|
||||
" --phpVersion '" + phpSelection + "' --ssl " + str(data['ssl']) + " --dkimCheck " + str(1) \
|
||||
" --phpVersion '" + phpSelection + "' --ssl " + str(1) + " --dkimCheck " + str(1) \
|
||||
+ " --openBasedir " + str(data['openBasedir']) + ' --path ' + path + ' --websiteOwner ' \
|
||||
+ admin.userName + ' --tempStatusPath ' + tempStatusPath + " --apache " + apacheBackend + f' --aliasDomain {str(alias)}'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user