- πΊπΈUnited States dww
Now that π Deprecate/remove the ability to update a module from a URL and authorize.php Active and child issues are done, all this code is deprecated and will be removed in D12.
Hey guys,
When updating modules, administrators are asked for FTP user and password to connect to the server, I have noticed that when you have a FTP user that has a password that contains @ in the password, the FTP connection fails, so I believe that Drupal is using a line like this to connect via FTP:
ftp_connect($user:$password@$server);
When it should be something like this:
$conn=ftp_connect($server);
ftp_login($conn, $user, $password);
To avoid this I have setup SSH2 extension of PHP and I've been using SSH to connect to the server, but you should consider fixing that problem.
Thanks.
Closed: won't fix
11.0 π₯
update.module
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Now that π Deprecate/remove the ability to update a module from a URL and authorize.php Active and child issues are done, all this code is deprecated and will be removed in D12.