You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If request URL is "/media/catalog/product/m/a/" (directory), Varien_File_Transfer_Adapter_Http error raise.
Also affect older versions.
Fix:
in "/pub/get.php" line 158:
if (file_exists($file) || is_readable($file)) {
change to:
if (file_exists($file) && is_readable($file) && !is_dir($file)) {