Это старая версия документа!
find . -type f -name '*.php' -exec sed -i -r 's#что#на_что#g' {} \;
yum install memcached php-pecl-memcached -y systemctl enable memcached
В core/config/config.inc.php заменить $config_options = array ();
$config_options = array ( 'cache_prefix' => 'произвольноезначение_', 'cache_handler' => 'cache.xPDOMemCached' );
$sql = "SELECT * FROM {$modx->getTableName('modResource')} WHERE `editedon` < ".strtotime('2000-02-24 00:00:00')." LIMIT 1000"; $q = new xPDOCriteria($modx, $sql); $docs = $modx->getCollection('modResource', $q); echo '<pre>'; $i=1; foreach($docs as $doc){ $dat = $doc->get('editedon'); $content = $doc->get('pagetitle'); echo $i.' '.$content.' '.$dat.' '.strtotime($dat); echo "\n"; $i=$i+1; //$doc->set('editedon','2017-02-23 00:00:00'); //$doc->save(); } echo '</pre>';
RewriteRule ^/novosti/old\.html$ /novosti/new.html [R=301,NC,L] RewriteRule ^/albums/old/$ /albums/new/ [R=301,NC,L]
RewriteCond %{HTTP:HTTPS} !=on [NC] RewriteRule ^(.*)$ https://www.gipsall.ru/$1 [R=301,L] SetEnvIf X-Forwarded-Proto https HTTPS=on
- $url_scheme= $isSecureRequest ? 'https://' : 'http://'; + $url_scheme= 'https://';