Hi FarmBoy,
Got word back from the devs on this, and it looks like we’ve got a fix. If you’re comfortable doing so, open up system/expressionengine/libraries/Filemanager.php and look at line 875:
$vars = array(
'base_url' => BASE.AMP.'C=content_files_modal'
);Replace that block with those one:
$base = (defined('BASE')) ? BASE : $this->EE->functions->fetch_site_index(0,0).QUERY_MARKER;
$vars = array(
'base_url' => $base.AMP.'C=content_files_modal'
);Does that take care of your issues?