mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
25 lines
No EOL
666 B
HTML
25 lines
No EOL
666 B
HTML
<config autoescape="on" />
|
|
|
|
<load target="./js/menu_setup.js" usecdn="true" />
|
|
|
|
<div class="x_page-header">
|
|
<h1>{$lang->server_env}</h1>
|
|
</div>
|
|
|
|
<section class="section">
|
|
<div class="server_env">{$str_info}</div>
|
|
<div class="server_env">[Tasks]<br /><a href="javascript:apcu_clear_cache()">apcu_clear_cache()</a><br /><a href="javascript:opcache_reset()">opcache_reset()</a></div>
|
|
</section>
|
|
|
|
<script>
|
|
function apcu_clear_cache() {
|
|
exec_json('admin.procAdminClearApcu', { }, function(data) {
|
|
alert(data.message);
|
|
});
|
|
}
|
|
function opcache_reset() {
|
|
exec_json('admin.procAdminClearOpcache', { }, function(data) {
|
|
alert(data.message);
|
|
});
|
|
}
|
|
</script> |