I have set WPMU to use separate domains, so not sure if that could be the problem, but....when trying to upload files from one of the blogs I get the error:
"Warning: Invalid argument supplied for foreach() in /wp-includes/functions.php on line 1122"
"File type does not meet security guidelines. Try another."
Line 1122 of functions.php is:
foreach ($mimes as $ext_preg => $mime_match) {
$ext_preg = '!\.(' . $ext_preg . ')$!i';
if ( preg_match($ext_preg, $filename, $ext_matches) ) {
$type = $mime_match;
$ext = $ext_matches[1];
break;
}
}
Any help would be greatly appreciated,
Brandon