It looks like that the image had been uploaded but it never finished. First of all I've found an exception in the Sitecore:
No component for supporting the service Sitecore.Controllers.MediaController was found
It was fixed by registering the component in the code:
But unfortunately it didn't help me (: That is mean my current Sitecore should be updated, Sitecore CMS 7.5 rev. 141003 Hotfix 431794-1 should fix it. But if we can't do any updates for some reason, we can switch to the old style Upload dialog.
Just go to /App_Config/Include/Sitecore.Speak.Applications.config file and comment out the following line:
It was fixed by registering the component in the code:
container.Register(Component.For(typeof(Sitecore.Controllers.MediaController))
.LifestylePerWebRequest());
But unfortunately it didn't help me (: That is mean my current Sitecore should be updated, Sitecore CMS 7.5 rev. 141003 Hotfix 431794-1 should fix it. But if we can't do any updates for some reason, we can switch to the old style Upload dialog.
Just go to /App_Config/Include/Sitecore.Speak.Applications.config file and comment out the following line:
<overrideXmlControls>
<override xmlControl="Sitecore.Shell.Applications.Media.MediaBrowser"
with="/sitecore/client/applications/Dialogs/SelectMediaDialog" />
</overrideXmlControls>