Summary | VFS Ftp driver doesn't work with AIX ftp servers |
Queue | Horde Framework Packages |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | werner.guenther (at) urz (dot) uni-heidelberg (dot) de |
Created | 08/30/2006 (6859 days ago) |
Due | 08/30/2006 (6859 days ago) |
Updated | 09/03/2006 (6855 days ago) |
Assigned | |
Resolved | 09/03/2006 (6855 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
HEAD and 3.1.4.
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ VFS Ftp driver doesn't work with AIX ftp servers
Due ⇒ 08/30/2006
Queue ⇒ Horde Framework Packages
New Attachment: ftp.php.patch
AIX servers, as the output is a little bit different. Output looks
like this on AIX:
drw-r--r-- 5 wguenthe fphys 2048 Mar 19 2004 WWW
instead of
drw-r--r-- 5 wguenthe fphys 2048 Mar 19 2004 WWW
ftp.php tries to detect the start of the file name by reformatting the
date string and by locating the resulting string within the current
line. The format of the year is '%-5s' on AIX instead of %5s. The
included patch tries to find the position using '%-5s' if '%5s' fails.