XCache is a fast, stable PHP opcode cacher that has been proven and is now running on production servers under high load.
https://xcache.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
729 B
44 lines
729 B
<?php |
|
|
|
include("./common.php"); |
|
|
|
if (!isset($_GET['name'])) { |
|
die("missing name"); |
|
} |
|
|
|
$name = $_GET['name']; |
|
// trigger auth |
|
$vcnt = xcache_count(XC_TYPE_VAR); |
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
if ($enable_eval) { |
|
eval('$value = ' . $_POST['value']); |
|
} |
|
else { |
|
$value = $_POST['value']; |
|
} |
|
xcache_set($name, $value); |
|
header("Location: xcache.php?type=" . XC_TYPE_VAR); |
|
exit; |
|
} |
|
$value = xcache_get($name); |
|
if ($enable_eval) { |
|
$value = var_export($value, true); |
|
$editable = true; |
|
} |
|
else { |
|
if (is_string($value)) { |
|
$editable = true; |
|
} |
|
else { |
|
$editable = false; |
|
$value = var_export($value, true); |
|
} |
|
} |
|
|
|
$xcache_version = XCACHE_VERSION; |
|
$xcache_modules = XCACHE_MODULES; |
|
|
|
include("edit.tpl.php"); |
|
|
|
?>
|
|
|