Zeile 8 | Zeile 8 |
---|
* * $Id$ */
|
* * $Id$ */
|
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); }
| |
@set_time_limit(0);
| @set_time_limit(0);
|
Zeile 36 | Zeile 21 |
---|
{ date_default_timezone_set('GMT'); }
|
{ date_default_timezone_set('GMT'); }
|
| require_once MYBB_ROOT.'inc/class_error.php'; $error_handler = new errorHandler();
|
require_once MYBB_ROOT.'inc/class_core.php'; $mybb = new MyBB;
|
require_once MYBB_ROOT.'inc/class_core.php'; $mybb = new MyBB;
|
require_once MYBB_ROOT.'inc/class_error.php'; $error_handler = new errorHandler();
| |
// Include the files necessary for installation require_once MYBB_ROOT.'inc/class_timers.php';
| // Include the files necessary for installation require_once MYBB_ROOT.'inc/class_timers.php';
|
Zeile 1099 | Zeile 1084 |
---|
$dbsupportlist[] = $dboption['title']; } $dbsupportlist = implode(', ', $dbsupportlist);
|
$dbsupportlist[] = $dboption['title']; } $dbsupportlist = implode(', ', $dbsupportlist);
|
}
| }
|
// Check XML parser is installed if(!function_exists('xml_parser_create')) {
| // Check XML parser is installed if(!function_exists('xml_parser_create')) {
|
Zeile 1442 | Zeile 1427 |
---|
$errors[] = $lang->db_step_error_tableprefix_too_long; }
|
$errors[] = $lang->db_step_error_tableprefix_too_long; }
|
if(is_array($errors))
| if(($db->engine == 'mysql' || $db->engine == 'mysqli') && $config['encoding'] == 'utf8mb4' && version_compare($db->get_version(), '5.5.3', '<')) { $errors[] = $lang->db_step_error_utf8mb4_error; }
if(is_array($errors))
|
{ database_info();
|
{ database_info();
|
}
| }
|
// Decide if we can use a database encoding or not if($db->fetch_db_charsets() != false)
| // Decide if we can use a database encoding or not if($db->fetch_db_charsets() != false)
|
Zeile 1456 | Zeile 1446 |
---|
{ $db_encoding = "// \$config['database']['encoding'] = '{$config['encoding']}';"; }
|
{ $db_encoding = "// \$config['database']['encoding'] = '{$config['encoding']}';"; }
|
| $config['dbpass'] = addslashes($config['dbpass']);
|
// Write the configuration file $configdata = "<?php
| // Write the configuration file $configdata = "<?php
|
Zeile 1645 | Zeile 1637 |
---|
function insert_templates() {
|
function insert_templates() {
|
global $output, $cache, $db, $lang;
| global $mybb, $output, $cache, $db, $lang;
|
require MYBB_ROOT.'inc/config.php'; $db = db_connection($config);
| require MYBB_ROOT.'inc/config.php'; $db = db_connection($config);
|
Zeile 2222 | Zeile 2214 |
---|
{ echo $lang->done_step_dirdelete; }
|
{ echo $lang->done_step_dirdelete; }
|
echo $lang->done_subscribe_mailing;
| echo $lang->done_whats_next;
|
$output->print_footer(''); }
| $output->print_footer(''); }
|