[wp-trac] [WordPress Trac] #34976: Plug ins fail to update after WP 4.4 installed
WordPress Trac
noreply at wordpress.org
Thu Dec 17 06:20:19 UTC 2015
#34976: Plug ins fail to update after WP 4.4 installed
----------------------------+---------------------
Reporter: patdundee | Owner: dd32
Type: defect (bug) | Status: closed
Priority: normal | Milestone: 4.4.1
Component: Filesystem API | Version: 4.4
Severity: normal | Resolution: fixed
Keywords: | Focuses:
----------------------------+---------------------
Comment (by arcain6):
I can indeed confirm that NLIST -a is the culprit for my system.
By removing the -a option, i was able to once again update plugins and
themes.
In file: wp-admin/includes/class-wp-filesystem-ftpext.php
Changed:
{{{
$file_list = @ftp_nlist( $this->link, '-a ' . $path );
}}}
Changed To:
{{{
$file_list = @ftp_nlist( $this->link, $path );
}}}
After this edit, all worked as expected.
--
Ticket URL: <https://core.trac.wordpress.org/ticket/34976#comment:80>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list