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: init.php 3816 2008-05-04 15:34:12Z Tikitiki $
| * $Id: init.php 4427 2009-08-13 21:22:07Z RyanGordon $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 15 | Zeile 15 |
---|
die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined."); }
|
die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined."); }
|
error_reporting(E_ALL & ~E_NOTICE);
| if(function_exists("unicode_decode")) { // Unicode extension introduced in 6.0 error_reporting(E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_STRICT); } elseif(defined("E_DEPRECATED")) { // E_DEPRECATED introduced in 5.3 error_reporting(E_ALL ^ E_DEPRECATED ^ E_NOTICE); } else { error_reporting(E_ALL & ~E_NOTICE); }
|
/* Defines the root directory for MyBB.
| /* Defines the root directory for MyBB.
|
Zeile 51 | Zeile 64 |
---|
$mybb = new MyBB;
if(!file_exists(MYBB_ROOT."inc/config.php"))
|
$mybb = new MyBB;
if(!file_exists(MYBB_ROOT."inc/config.php"))
|
{ $mybb->trigger_generic_error("board_not_installed"); }
| { $mybb->trigger_generic_error("board_not_installed"); }
|
// Include the required core files require_once MYBB_ROOT."inc/config.php"; $mybb->config = &$config;
| // Include the required core files require_once MYBB_ROOT."inc/config.php"; $mybb->config = &$config;
|
Zeile 81 | Zeile 94 |
---|
}
require_once MYBB_ROOT."inc/db_".$config['database']['type'].".php";
|
}
require_once MYBB_ROOT."inc/db_".$config['database']['type'].".php";
|
$db = new databaseEngine;
| switch($config['database']['type']) { case "sqlite3": $db = new DB_SQLite3; break; case "sqlite2": $db = new DB_SQLite2; break; case "pgsql": $db = new DB_PgSQL; break; case "mysqli": $db = new DB_MySQLi; break; default: $db = new DB_MySQL; }
|
// Check if our DB engine is loaded if(!extension_loaded($db->engine)) { // Try and manually load it - DIRECTORY_SEPARATOR checks if running windows if(DIRECTORY_SEPARATOR == '\\')
|
// Check if our DB engine is loaded if(!extension_loaded($db->engine)) { // Try and manually load it - DIRECTORY_SEPARATOR checks if running windows if(DIRECTORY_SEPARATOR == '\\')
|
{
| {
|
@dl('php_'.$db->engine.'.dll'); } else { @dl($db->engine.'.so');
|
@dl('php_'.$db->engine.'.dll'); } else { @dl($db->engine.'.so');
|
}
| }
|
// Check again to see if we've been able to load it if(!extension_loaded($db->engine))
| // Check again to see if we've been able to load it if(!extension_loaded($db->engine))
|
Zeile 162 | Zeile 192 |
---|
$settings['wolcutoff'] = $settings['wolcutoffmins']*60; $settings['bbname_orig'] = $settings['bbname']; $settings['bbname'] = strip_tags($settings['bbname']);
|
$settings['wolcutoff'] = $settings['wolcutoffmins']*60; $settings['bbname_orig'] = $settings['bbname']; $settings['bbname'] = strip_tags($settings['bbname']);
|
| $settings['orig_bblanguage'] = $settings['bblanguage'];
|
// Fix for people who for some specify a trailing slash on the board URL if(substr($settings['bburl'], -1) == "/") { $settings['bburl'] = my_substr($settings['bburl'], 0, -1);
|
// Fix for people who for some specify a trailing slash on the board URL if(substr($settings['bburl'], -1) == "/") { $settings['bburl'] = my_substr($settings['bburl'], 0, -1);
|
| }
$settings['internal'] = $cache->read("internal_settings"); if(!$settings['internal']['encryption_key']) { $cache->update("internal_settings", array('encryption_key' => random_str(32))); $settings['internal'] = $cache->read("internal_settings");
|
}
$mybb->settings = &$settings; $mybb->parse_cookies(); $mybb->cache = &$cache;
|
}
$mybb->settings = &$settings; $mybb->parse_cookies(); $mybb->cache = &$cache;
|
| if($mybb->settings['useshutdownfunc'] != 0) { $mybb->use_shutdown = true; register_shutdown_function(array(&$mybb, "__destruct")); }
|
// Load plugins if(!defined("NO_PLUGINS"))
| // Load plugins if(!defined("NO_PLUGINS"))
|