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 4304 2009-01-02 01:11:56Z chris $
| * $Id: xcache.php 5379 2011-02-21 11:06:42Z Tomm $
|
*/
/**
| */
/**
|
Zeile 26 | Zeile 26 |
---|
// Check if our DB engine is loaded if(!extension_loaded("XCache")) {
|
// Check if our DB engine is loaded if(!extension_loaded("XCache")) {
|
// Try and manually load it - DIRECTORY_SEPARATOR checks if running windows if(DIRECTORY_SEPARATOR == '\\') { @dl('php_xcache.dll'); } else { @dl('xcache.so'); } // Check again to see if we've been able to load it if(!extension_loaded("XCache") && !$silent) { // 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"); }
| // 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 57 | 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; }
|