-
-
Save jaygilmore/8c4e27da42fa64662832805dd4c70a7a to your computer and use it in GitHub Desktop.
Script to recalculate all unfrozen URI values for MODX Resources in 2.1.x+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include 'config.core.php'; | |
include MODX_CORE_PATH . 'model/modx/modx.class.php'; | |
$modx = new modX(); | |
$modx->setLogTarget(XPDO_CLI_MODE ? 'ECHO' : 'HTML'); | |
$modx->initialize('mgr'); | |
$modx->setLogLevel(modX::LOG_LEVEL_INFO); | |
$modx->exec("UPDATE {$modx->getTableName('modResource')} SET uri = '' WHERE uri_override = 0"); | |
$modx->call('modResource', 'refreshURIs', array(&$modx)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment