Magento – Fatal Error Mediafallback.php on line 61

configurable-productfatal errormagento-1.9

I am trying to add a configurable product on magento 1.9.1.0 and experiencing a fatal error

Fatal error: Unsupported operand types in /public_html/app/code/core/Mage/ConfigurableSwatches/Helper/Mediafallback.php on line 61

Any suggestions how I can solve the problem?

Best Answer

Faced same problem today, I fixed it by Overriding core files

  1. Copy

    app/code/core/Mage/ConfigurableSwatches/Helper/Mediafallback.php
    

    to

    app/code/local/Mage/ConfigurableSwatches/Helper/Mediafallback.php
    
  2. and change line number 61 from

    $optionLabels += $attribute->getOptionLabels();
    

    to

    $optionLabels = array_merge($optionLabels, $attribute->getOptionLabels());
    

this will solve this error.

Related Topic