Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: xcache.php 4053 2008-07-31 04:56:19Z Tikitiki $
| * $Id: xcache.php 4852 2010-04-04 17:38:33Z RyanGordon $
|
*/
/**
| */
/**
|
Zeile 19 | Zeile 19 |
---|
*/ var $unique_id;
|
*/ var $unique_id;
|
function xcacheCacheHandler()
| function xcacheCacheHandler($silent=false)
|
{ if(!function_exists("xcache_get")) {
|
{ if(!function_exists("xcache_get")) {
|
die("Xcache needs to be configured with PHP to use the Xcache cache support");
| // Check if our DB engine is loaded if(!extension_loaded("XCache")) { // Throw our super awesome cache loading error die("Xcache needs to be configured with PHP to use the Xcache cache support"); $mybb->trigger_generic_error("sql_load_error"); }
|
} }
| } }
|
Zeile 37 | Zeile 43 |
---|
global $mybb;
// Set a unique identifier for all queries in case other forums on this server also use this cache handler
|
global $mybb;
// Set a unique identifier for all queries in case other forums on this server also use this cache handler
|
$this->unique_id = md5($mybb->settings['bburl']);
| $this->unique_id = md5(MYBB_ROOT);
|
return true; }
| return true; }
|