@Michael
Good news, our dev team found and fixed an issue. The problem was in that your FTp user has default folder public_html - the same folder where oxwall is installed. This is the reason why plugins were not updated. We will included this fix in upcoming update.
For those, who has the same issue and do not want to wait an update, please do this:
In file ow_utilities/ftp.php after this code
foreach ( $pathList as $path )
{
if ( $this->isFtpRootDir($path) )
{
$this->ftpRootDir = substr(OW_DIR_ROOT, 0, strpos(OW_DIR_ROOT, $path));
break;
}
}
paste this code
if( $this->ftpRootDir === null )
{
$this->ftpRootDir = OW_DIR_ROOT;
}