class Cache {
public static function get($key) {
- if (function_exists("apc_fetch") AND function_exists("apc_exists"))
+ /*if (function_exists("apc_fetch") AND function_exists("apc_exists"))
if (apc_exists($key))
- return(apc_fetch($key));
+ return(apc_fetch($key));*/
$r = q("SELECT `v` FROM `cache` WHERE `k`='%s' limit 1",
dbesc($key)
);
if (count($r)) {
- if (function_exists("apc_store"))
- apc_store($key, $r[0]['v'], 600);
+ /*if (function_exists("apc_store"))
+ apc_store($key, $r[0]['v'], 600);*/
return $r[0]['v'];
}
dbesc($value),
dbesc(datetime_convert()));
- if (function_exists("apc_store"))
- apc_store($key, $value, 600);
+ /*if (function_exists("apc_store"))
+ apc_store($key, $value, 600);*/
}
function load_config($family) {
global $a;
- // To-Do: How to integrate APC here?
-
$r = q("SELECT * FROM `config` WHERE `cat` = '%s'", dbesc($family));
if(count($r)) {
foreach($r as $rr) {
}
// If APC is enabled then fetch the data from there, else try XCache
- if (function_exists("apc_fetch") AND function_exists("apc_exists"))
+ /*if (function_exists("apc_fetch") AND function_exists("apc_exists"))
if (apc_exists($family."|".$key)) {
$val = apc_fetch($family."|".$key);
$a->config[$family][$key] = $val;
else
return $val;
}
+ */
$ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
dbesc($family),
$a->config[$family][$key] = $val;
// If APC is enabled then store the data there, else try XCache
- if (function_exists("apc_store"))
+ /*if (function_exists("apc_store"))
apc_store($family."|".$key, $val, 600);
elseif (function_exists("xcache_set"))
- xcache_set($family."|".$key, $val, 600);
+ xcache_set($family."|".$key, $val, 600);*/
return $val;
}
$a->config[$family][$key] = '!<unset>!';
// If APC is enabled then store the data there, else try XCache
- if (function_exists("apc_store"))
+ /*if (function_exists("apc_store"))
apc_store($family."|".$key, '!<unset>!', 600);
elseif (function_exists("xcache_set"))
- xcache_set($family."|".$key, '!<unset>!', 600);
+ xcache_set($family."|".$key, '!<unset>!', 600);*/
}
return false;
}}
$a->config[$family][$key] = $value;
// If APC is enabled then store the data there, else try XCache
- if (function_exists("apc_store"))
+ /*if (function_exists("apc_store"))
apc_store($family."|".$key, $value, 600);
elseif (function_exists("xcache_set"))
- xcache_set($family."|".$key, $value, 600);
+ xcache_set($family."|".$key, $value, 600);*/
if($ret)
return $value;
}
// If APC is enabled then fetch the data from there, else try XCache
- if (function_exists("apc_fetch") AND function_exists("apc_exists"))
+ /*if (function_exists("apc_fetch") AND function_exists("apc_exists"))
if (apc_exists($uid."|".$family."|".$key)) {
$val = apc_fetch($uid."|".$family."|".$key);
$a->config[$uid][$family][$key] = $val;
return false;
else
return $val;
- }
+ }*/
$ret = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
$a->config[$uid][$family][$key] = $val;
// If APC is enabled then store the data there, else try XCache
- if (function_exists("apc_store"))
+ /*if (function_exists("apc_store"))
apc_store($uid."|".$family."|".$key, $val, 600);
elseif (function_exists("xcache_set"))
- xcache_set($uid."|".$family."|".$key, $val, 600);
+ xcache_set($uid."|".$family."|".$key, $val, 600);*/
return $val;
}
$a->config[$uid][$family][$key] = '!<unset>!';
// If APC is enabled then store the data there, else try XCache
- if (function_exists("apc_store"))
+ /*if (function_exists("apc_store"))
apc_store($uid."|".$family."|".$key, '!<unset>!', 600);
elseif (function_exists("xcache_set"))
- xcache_set($uid."|".$family."|".$key, '!<unset>!', 600);
+ xcache_set($uid."|".$family."|".$key, '!<unset>!', 600);*/
}
return false;
}}
dbesc($key)
);
// If APC is enabled then delete the data from there, else try XCache
- if (function_exists("apc_delete"))
+ /*if (function_exists("apc_delete"))
apc_delete($family."|".$key);
elseif (function_exists("xcache_unset"))
- xcache_unset($family."|".$key);
+ xcache_unset($family."|".$key);*/
return $ret;
}}
$a->config[$uid][$family][$key] = $value;
// If APC is enabled then store the data there, else try XCache
- if (function_exists("apc_store"))
+ /*if (function_exists("apc_store"))
apc_store($uid."|".$family."|".$key, $value, 600);
elseif (function_exists("xcache_set"))
- xcache_set($uid."|".$family."|".$key, $value, 600);
+ xcache_set($uid."|".$family."|".$key, $value, 600);*/
if($ret)
function settings_init(&$a) {
- if (function_exists("apc_delete")) {
- $toDelete = new APCIterator('user', APC_ITER_VALUE);
- apc_delete($toDelete);
- }
+ // APC deactivated, since there are problems with PHP 5.5
+ //if (function_exists("apc_delete")) {
+ // $toDelete = new APCIterator('user', APC_ITER_VALUE);
+ // apc_delete($toDelete);
+ //}
// These lines provide the javascript needed by the acl selector
$pageset_tpl = get_markup_template('pagetypes.tpl');
$pagetype = replace_macros($pageset_tpl, array(
+ '$user' => t("User Types"),
+ '$community' => t("Community Types"),
'$page_normal' => array('page-flags', t('Normal Account Page'), PAGE_NORMAL,
t('This account is a normal personal profile'),
($a->user['page-flags'] == PAGE_NORMAL)),