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 78cddfc + 34ffac7 commit 0cf21a6Copy full SHA for 0cf21a6
lib/internal/Magento/Framework/System/Ftp.php
@@ -105,6 +105,12 @@ public function validateConnectionString($string)
105
if ($data['scheme'] != 'ftp') {
106
throw new \Exception("Support for scheme unsupported: '{$data['scheme']}'");
107
}
108
+
109
+ // Decode user & password strings from URL
110
+ foreach (array_intersect(array_keys($data), ['user','pass']) as $key) {
111
+ $data[$key] = urldecode($data[$key]);
112
+ }
113
114
return $data;
115
116
0 commit comments