Hi,
I had some troubles installing a plugin because of FTP (and why use FTP ?).
My problem is in ow_utilities/ftp.php
I use an account that has whole access to the disk (local net only ;) and when the init() function says $this->chdir('/') it calls getPath('/') with a $this->ftpRootDir that is also '/'.
As a substr($string, 1) on a string with 1 char return false, it fails to do the chdir()
I had to append a third test (before doing the substr):
if ( strlen($path) === strlen($this->ftpRootDir) )
{
return $this->ftpRootDir;
}
Am I right?
I must admit, I'm not really happy to have to setup a FTP account for the web user on a public server, I think I'll look for a way to avoid using FTP. I may replace that file by a class that access local files but I would prefer a cleaner way...
Regards.
Regis.