After upgrading to MODX 3 and updating the Collections extra to version 4.x, the children grid disappears. It might show "This resource doesn't have any children" even if resources exist inside the folder. The MODX error log gets flooded with 42S22 and 1054 Unknown column errors.
CollectionContainer class key is no longer recognized by the system.extension_packages loading method from MODX 2 is obsolete and conflicts with the new bootstrap system.modx_collection_templates table.Run this SQL query in phpMyAdmin to migrate the old MODX 2 resource types to the new MODX 3 structure.
UPDATE modx_site_content SET class_key = 'Collections\\Model\\CollectionContainer' WHERE class_key = 'CollectionContainer';
UPDATE modx_site_content SET class_key = 'Collections\\Model\\SelectionContainer' WHERE class_key = 'SelectionContainer';
MODX 3 no longer uses this table for Collections. Remove the legacy entry to prevent boot conflicts:
DELETE FROM modx_extension_packages WHERE namespace = 'collections';
The installer failed to create the new configuration columns required by version 4.x. Run these queries in the SQL tab to manually patch the table structure. Replace modx_ with your custom database prefix if necessary:
ALTER TABLE modx_collection_templates ADD COLUMN search_query_exclude_tvs VARCHAR(255) NOT NULL DEFAULT '';
ALTER TABLE modx_collection_templates ADD COLUMN search_query_exclude_tagger TINYINT(1) NOT NULL DEFAULT 0;
ALTER TABLE modx_collection_templates ADD COLUMN search_query_title_only TINYINT(1) NOT NULL DEFAULT 0;
ALTER TABLE modx_collection_templates ADD COLUMN show_quick_create TINYINT(1) NOT NULL DEFAULT 0;
ALTER TABLE modx_collection_templates ADD COLUMN quick_create_label VARCHAR(255) NOT NULL DEFAULT '';
ALTER TABLE modx_collection_templates ADD COLUMN fred_default_blueprint INT(10) NOT NULL DEFAULT 0;
core/cache/, and delete all its contents.