From adf1963afec9e057401022c1622c195d232576c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20Rodr=C3=ADguez=20Cruz?= Date: Wed, 2 Oct 2019 02:20:19 +0200 Subject: [PATCH 1/2] bug fix: select english default --- loginSystem/templates/loginSystem/login.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/loginSystem/templates/loginSystem/login.html b/loginSystem/templates/loginSystem/login.html index 0da949e54..407ee54ee 100755 --- a/loginSystem/templates/loginSystem/login.html +++ b/loginSystem/templates/loginSystem/login.html @@ -123,8 +123,8 @@
- + @@ -165,4 +165,4 @@ - \ No newline at end of file + From d8aa9309d572b0aae228b5091e093f261734d408 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julio=20Rodr=C3=ADguez=20Cruz?= Date: Sat, 5 Oct 2019 00:12:10 +0200 Subject: [PATCH 2/2] bug fix: owner:group from logs, dont write access&errors --- plogical/cPanelImporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plogical/cPanelImporter.py b/plogical/cPanelImporter.py index 6613b4e1a..0d6cdff0e 100644 --- a/plogical/cPanelImporter.py +++ b/plogical/cPanelImporter.py @@ -713,7 +713,7 @@ class cPanelImporter: command = "sudo chown -R " + externalApp + ":" + externalApp + " /home/" + self.mainDomain ProcessUtilities.normalExecutioner(command) - command = "sudo chown -R lscpd:lscpd /home/" + self.mainDomain + "/logs" + command = "sudo chown -R root:nobody /home/" + self.mainDomain + "/logs" ProcessUtilities.normalExecutioner(command) command = "sudo find %s -type d -exec chmod 0755 {} \;" % ("/home/" + self.mainDomain + "/public_html")