diff --git a/managePHP/php70.xml b/managePHP/php70.xml index 7432b178f..bb5b43ad3 100755 --- a/managePHP/php70.xml +++ b/managePHP/php70.xml @@ -266,4 +266,10 @@ 0 + + lsphp70-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + \ No newline at end of file diff --git a/managePHP/php71.xml b/managePHP/php71.xml index 4fb5292f8..ede2d7bbd 100755 --- a/managePHP/php71.xml +++ b/managePHP/php71.xml @@ -266,4 +266,10 @@ 0 + + lsphp71-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + \ No newline at end of file diff --git a/managePHP/php72.xml b/managePHP/php72.xml index d9f151853..f6689ab11 100755 --- a/managePHP/php72.xml +++ b/managePHP/php72.xml @@ -266,4 +266,10 @@ 0 + + lsphp72-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + \ No newline at end of file diff --git a/managePHP/php73.xml b/managePHP/php73.xml index b24f99ec8..e35e0188d 100755 --- a/managePHP/php73.xml +++ b/managePHP/php73.xml @@ -266,4 +266,10 @@ 0 + + lsphp73-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + \ No newline at end of file diff --git a/managePHP/ubuntuphp70.xml b/managePHP/ubuntuphp70.xml index 125028e6e..eff67d913 100755 --- a/managePHP/ubuntuphp70.xml +++ b/managePHP/ubuntuphp70.xml @@ -116,4 +116,10 @@ 0 + + lsphp70-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + \ No newline at end of file diff --git a/managePHP/ubuntuphp71.xml b/managePHP/ubuntuphp71.xml index e968c31fd..f994a8562 100755 --- a/managePHP/ubuntuphp71.xml +++ b/managePHP/ubuntuphp71.xml @@ -116,4 +116,10 @@ 0 + + lsphp71-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + diff --git a/managePHP/ubuntuphp72.xml b/managePHP/ubuntuphp72.xml index 4725cedd8..d0e01cd10 100755 --- a/managePHP/ubuntuphp72.xml +++ b/managePHP/ubuntuphp72.xml @@ -116,4 +116,10 @@ 0 + + lsphp72-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + diff --git a/managePHP/ubuntuphp73.xml b/managePHP/ubuntuphp73.xml index 33c90dcf9..895006c82 100755 --- a/managePHP/ubuntuphp73.xml +++ b/managePHP/ubuntuphp73.xml @@ -116,4 +116,10 @@ 0 + + lsphp73-pecl-imagick + Extension to create and modify images using ImageMagick + 0 + + diff --git a/managePHP/views.py b/managePHP/views.py index b515aa6e6..175e08c42 100755 --- a/managePHP/views.py +++ b/managePHP/views.py @@ -1001,6 +1001,7 @@ def installExtensions(request): phpExtension.save() + ## non-active packages @@ -1067,6 +1068,13 @@ def installExtensions(request): phpExtension.save() + phpExtension = installedPackages(phpVers=php56, + extensionName="lsphp56-pecl-imagick", + description="Extension to create and modify images using ImageMagick", + status=0) + + phpExtension.save() + ### ################ ################# ##### Gather php 70 information diff --git a/plogical/cPanelImporter.py b/plogical/cPanelImporter.py index 6d0c3b66b..42042c981 100644 --- a/plogical/cPanelImporter.py +++ b/plogical/cPanelImporter.py @@ -617,6 +617,8 @@ class cPanelImporter: DatabasesPath = '%s/mysql' % (CompletPathToExtractedArchive) for items in os.listdir(DatabasesPath): + if items.find('roundcube') > -1: + continue if items.endswith('.sql'): message = 'Restoring MySQL dump for %s.' % (items.replace('.sql', '')) logging.statusWriter(self.logFile, message, 1)