Files
dev.ttsby.com/modules/site/action/a.clear_wcache.php
2023-04-17 11:06:08 +09:00

15 lines
310 B
PHP

<?php
if(!defined('__KIMS__')) exit;
checkAdmin(0);
include $g['path_core'].'function/dir.func.php';
$w_dir = $g['path_tmp'].'widget';
DirDelete($w_dir);
mkdir($w_dir,0707);
@chmod($w_dir,0707);
getLink('reload','parent.frames._ADMPNL_.','위젯 캐시가 재생성 되었습니다.','');
?>