Enabling this will no longer allow you to view unpublished resources from the front-end right?That is correct, but you could try the pre-release version of my Revise extra which includes a built-in Preview. Or something similar.
We added a cool new feature in 2.2.1 for sites that have no need for delivering personalized content. It's called Session-less Contexts, can improve front-end performance ~40 times, and you can read about it here.
$context = 'web'; //default context $parse = parse_url($_SERVER['REQUEST_URI']); if (preg_match("/^\/(membership|video)\//", $parse['path'], $matches)) { $context = $matches[1]; } /* Initialize the default 'web' context */ $modx->initialize($context);