Find attribute_id
SELECT * FROM eav_attribute where attribute_code = 'is_anchor'
Update all of them with anchor_id from above (usually is ID 51)
UPDATE `catalog_category_entity_int` set value = 1 where attribute_id = 51
| <?xml version="1.0"?> | |
| <config> | |
| <frontend> | |
| <events> | |
| <!-- disble logs --> | |
| <controller_action_predispatch> | |
| <observers><log><type>disabled</type></log></observers> | |
| </controller_action_predispatch> | |
| <controller_action_postdispatch> | |
| <observers><log><type>disabled</type></log></observers> |
| <?php | |
| /** | |
| * This script outputs an array of file hashes recursively for the current directory. | |
| * Useful for generating hashlist for security scanning programs | |
| * | |
| */ | |
| function recursive_md5($dir, $types = null, $recursive = true, $baseDir = '') | |
| { | |
| $to_ignore = array( | |
| '.', |