Hey Guys!
I'm loving WPMU, and I've only had it for a few days now. I'm running into a problem, though, and I'm not sure why. When I go to my media library to upload a picture from my computer, I get the following error:
Warning: Invalid argument supplied for foreach() in /home/.iota/julisana/argtest.julisana.com/wp-includes/functions.php on line 2088
Here's what's located at line 2088:
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;
}
}
I'm running WPMU 2.7.1.
I do have BuddyPress installed on one site, but the site I'm trying to upload from is not running any plugins.
Thanks for any help you can offer!