Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?
//Чистим кэши
php function Remove_cache($path,$t="1") {$rtrn="1";if (file_exists($path) && is_dir($path)) {$dirHandle = opendir($path);while (false !== ($file = readdir($dirHandle))) {if ($file!='.' && $file!='..') {$tmpPath=$path.'/'.$file;chmod($tmpPath, 0777);if (is_dir($tmpPath)) {Remove_cache($tmpPath);} else {if (file_exists($tmpPath)) {unlink($tmpPath);}}}}closedir($dirHandle);if ($t=="1") {if (file_exists($path)) {rmdir($path);}}} else {$rtrn="0";}return $rtrn;}
Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/cache/",1);
Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/managed_cache/",1);
Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/stack_cache/",1);
?>
Очень полезно, а с какой периодичностью у вас настроено?Иногда подчищаю кэши без средств API простым PHP кодом, который можно в крон подсунуть. И так с любой папкой.. Данный пример написан с относительным путем, для крона вам нужно будет прописать полный путь к папке.PHP:<? //Чистим кэши php function Remove_cache($path,$t="1") {$rtrn="1";if (file_exists($path) && is_dir($path)) {$dirHandle = opendir($path);while (false !== ($file = readdir($dirHandle))) {if ($file!='.' && $file!='..') {$tmpPath=$path.'/'.$file;chmod($tmpPath, 0777);if (is_dir($tmpPath)) {Remove_cache($tmpPath);} else {if (file_exists($tmpPath)) {unlink($tmpPath);}}}}closedir($dirHandle);if ($t=="1") {if (file_exists($path)) {rmdir($path);}}} else {$rtrn="0";}return $rtrn;} Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/cache/",1); Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/managed_cache/",1); Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/stack_cache/",1); ?>
Дошли у меня руки до крона.. В вэб окружении активировал его.Иногда подчищаю кэши без средств API простым PHP кодом, который можно в крон подсунуть. И так с любой папкой.. Данный пример написан с относительным путем, для крона вам нужно будет прописать полный путь к папке.PHP:<? //Чистим кэши php function Remove_cache($path,$t="1") {$rtrn="1";if (file_exists($path) && is_dir($path)) {$dirHandle = opendir($path);while (false !== ($file = readdir($dirHandle))) {if ($file!='.' && $file!='..') {$tmpPath=$path.'/'.$file;chmod($tmpPath, 0777);if (is_dir($tmpPath)) {Remove_cache($tmpPath);} else {if (file_exists($tmpPath)) {unlink($tmpPath);}}}}closedir($dirHandle);if ($t=="1") {if (file_exists($path)) {rmdir($path);}}} else {$rtrn="0";}return $rtrn;} Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/cache/",1); Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/managed_cache/",1); Remove_cache($_SERVER['DOCUMENT_ROOT']."/bitrix/stack_cache/",1); ?>
Я просто привел пример чистки кэша без API битрикса, ведь если демо сайт уже! заблокирован, средствами API не почистить.Дошли у меня руки до крона.. В вэб окружении активировал его.
<div class="flexslider" data-plugin-options="{"animation":"slide", "animationLoop": true, "maxItems": 1}">
<ul class="slides">
<li> <img src="/bitrix/templates/aspro-scorp/images/project.jpg" alt="" class="img-responsive"> </li>
<li> <img src="/bitrix/templates/aspro-scorp/images/project.jpg" alt="" class="img-responsive"> </li>
<li> <img src="/bitrix/templates/aspro-scorp/images/project.jpg" alt="" class="img-responsive"> </li>
</ul>
</div>
</div>