Hello guys, I'm running the lasted version of flash and wordpress 3.1.3 and all of a sudden the flash uploader stoped working.. I did a search here and everything seems to be dated back to 2008 and non of the solutions work.
What is weird is that I have 3 wordpress sites, it's not working in only one of them, the other two works fine. The only thing I did to this installation is messed with my theme functions.php file;
I added;
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150, true ); // default Post Thumbnail dimensions (cropped)
add_image_size( '55x55', 55, 55, true ); // Widgets
add_image_size( '512x240', 512, 240, true ); // Blog Index
add_image_size( '512', 512, 99999, false ); // Single
}
as soon as I saved that it stopped working, I tried reverting it, but the problem is still there.
Any ideas?