Manager error Resource ID not found

What did you do before this error occured?

It’s seems like you updated from an older version (lower than 2.7.0) of MODx and the column alias_visible wasn’t added to the database table on the update.

You could try adding this missing column manually (for example in phpMyAdmin) with the following SQL statement from this github issue.

ALTER TABLE `modx_site_content` ADD `alias_visible` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '1' AFTER `alias` ;