We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08d13a1 + 3884bac commit e43b877Copy full SHA for e43b877
lib/internal/Magento/Framework/System/Ftp.php
@@ -107,6 +107,12 @@ public function validateConnectionString($string)
107
if ($data['scheme'] != 'ftp') {
108
throw new \Exception("Support for scheme unsupported: '{$data['scheme']}'");
109
}
110
+
111
+ // Decode user & password strings from URL
112
+ foreach (array_intersect(array_keys($data), ['user','pass']) as $key) {
113
+ $data[$key] = urldecode($data[$key]);
114
+ }
115
116
return $data;
117
118
0 commit comments