I have a module which contains a model rewrite in it's config.xml file.
Site also have other 3rd party modules, due to which I suspect module conflict occurs and thus result page seems to be broken.
When I remove rewrite in my config.xml file, page reappears correctly.
Below shows rewrite code section in my config.xml file.
<rewrite>
<catalog_product_attribute_edit_tab_main>MyNameSpace_MyModule_Block_Product_Attribute_Main</catalog_product_attribute_edit_tab_main>
</rewrite>
I disabled it like below :
<rewrite>
<!--<catalog_product_attribute_edit_tab_main>MyNameSpace_MyModule_Block_Product_Attribute_Main</catalog_product_attribute_edit_tab_main>-->
</rewrite>
I think the reason is conflict between modules.
Questions
How can I understand that it's rewrite-conflict or it something else?
If it is a conflict (2 or more extensions are overwriting the same functionality/Model ), then how to identify the which Module/Class are in conflict with this one?
OBSERVATION
