I am using magento 1.7.0.1 and if i am goint to edit configure product or add configure product than tab are not display properly and its working for the simple product. Its very strange to me.
I also try to replace default magento files but still getting same error. I am replaced adminhtml/catalog and mage/catalog but still issue was there.
I also disabled all the extension but not getting success.
I try to get error and i found that in firebug like below
<a id="product_info_tabs_configurable" class="tab-item-link ajax" title="Associated Products" name="configurable" href="#">
<span>
<span class="changed" title="The information in this tab has been changed."></span>
<span class="error" title="This tab contains invalid data. Please solve the problem before saving."></span>
Associated Products
</span>
</a>
and below of the my screenshot of the admin panel manage product and i am trying to edit configure product and also same error in the create new configure product.
Please help me out from the this problem.
</html>
. If you turn on error reporting and developer mode you should see the error message in the page source. Something likeFatal Error:...
– Mariusindex.php
and uncomment the line#ini_set('display_errors', 1);
and changeif (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { Mage::setIsDeveloperMode(true); }
toMage::setIsDeveloperMode(true);
. Then try again. It will show you the error message in the page source. Add it to your question. – MariusFatal error: Call to a member function setColumn() on a non-object
this error – Jalpesh Patel