summaryrefslogtreecommitdiff
path: root/plugins/phpbb30/phpbb30_bootstrap.php
diff options
context:
space:
mode:
authorChristoph Burschka2012-11-02 23:19:12 +0100
committerChristoph Burschka2012-11-02 23:19:12 +0100
commitc92b1bd7538ed0eb18bdb3a1401fe4d0010bfdeb (patch)
tree4df80ba2396093c2781e20430f2232190f74976b /plugins/phpbb30/phpbb30_bootstrap.php
parentTypo in config.sample.php (diff)
downloadejabberd-auth-php-c92b1bd7538ed0eb18bdb3a1401fe4d0010bfdeb.tar.gz
Renaming phpbb versions properly.
Diffstat (limited to 'plugins/phpbb30/phpbb30_bootstrap.php')
-rw-r--r--plugins/phpbb30/phpbb30_bootstrap.php45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/phpbb30/phpbb30_bootstrap.php b/plugins/phpbb30/phpbb30_bootstrap.php
new file mode 100644
index 0000000..55c973f
--- /dev/null
+++ b/plugins/phpbb30/phpbb30_bootstrap.php
@@ -0,0 +1,45 @@
+<?php
+define('IN_PHPBB', TRUE);
+global $phpEx, $db, $cache, $user, $config;
+$phpEx = 'php';
+
+if (!file_exists($phpbb_root_path . 'includes/startup.' . $phpEx)) {
+ file_put_contents('php://stderr', "phpBB not found at <{$phpbb_root_path}>.\n");
+ exit;
+}
+require($phpbb_root_path . 'includes/startup.' . $phpEx);
+
+if (file_exists($phpbb_root_path . 'config.' . $phpEx))
+{
+ require($phpbb_root_path . 'config.' . $phpEx);
+}
+
+if (!defined('PHPBB_INSTALLED'))
+{
+ file_put_contents('php://stderr', "phpBB needs to be installed first.\n");
+ exit;
+}
+
+// Include files
+require(__DIR__ . '/noweb_user.php');
+require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.' . $phpEx);
+require($phpbb_root_path . 'includes/cache.' . $phpEx);
+require($phpbb_root_path . 'includes/auth.' . $phpEx);
+require($phpbb_root_path . 'includes/functions.' . $phpEx);
+require($phpbb_root_path . 'includes/functions_content.' . $phpEx);
+
+require($phpbb_root_path . 'includes/constants.' . $phpEx);
+require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);
+require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
+
+// Instantiate some basic classes
+$user = new noweb_user();
+$auth = new auth();
+$db = new $sql_db();
+$cache = new cache();
+
+// Connect to DB
+$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false, defined('PHPBB_DB_NEW_LINK') ? PHPBB_DB_NEW_LINK : false);
+// We do not need this any longer, unset for safety purposes
+unset($dbpasswd);
+$config = $cache->obtain_config();