| IP: |
n/a |
| Rang: |
|
| Registrierung: |
29.07.2007, 00:00 |
| |
 Erfahren mit 190 Punkte, 114 Beiträge |
|
Hallo,
habe versucht auf meinen Localserver das Update von BS1.36 auf 1.41 zu installieren. Bei Schritt 5 bekomme ich dann allerdings folgenden Fehlermeldung:
Code: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| Critical error! Stopping script-execution... MySQL-Query failed: 1050: Table 'bs_bbcodes' already exists MySQL-Query: CREATE TABLE `bs_bbcodes` ( `id` int(11) unsigned NOT NULL auto_increment, `name` varchar(30) NOT NULL, `type` varchar(15) NOT NULL default 'inline', `content` varchar(30) NOT NULL, `replacement` text NOT NULL, `replacement_param` text NOT NULL, `param` enum('no','optional','required') NOT NULL, `param_type` varchar(10) NOT NULL, `allow_nesting` tinyint(1) unsigned NOT NULL, `ignore_whitespace` tinyint(1) unsigned NOT NULL, `ignore_unknown_tags` tinyint(1) unsigned NOT NULL, `allowed_content` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM; Call-trace:
* /install\module\5\sql\update.php in line 64 [ Method: FWS_DB_MySQL_Connection::execute() ] 0059 `allow_nesting` tinyint(1) unsigned NOT NULL, 0060 `ignore_whitespace` tinyint(1) unsigned NOT NULL, 0061 `ignore_unknown_tags` tinyint(1) unsigned NOT NULL, 0062 `allowed_content` varchar(255) NOT NULL, 0063 PRIMARY KEY (`id`) 0064 ) TYPE=MyISAM;"); 0065 0066 $db->execute("INSERT INTO `{$consts['BS_TB_BBCODES']}` 0067 (`id`, `name`, `type`, `content`, `replacement`, `replacement_param`, `param`, `param_type`, `allow_nesting`, `ignore_whitespace`, `ignore_unknown_tags`, `allowed_content`) 0068 VALUES 0069 (1, 'b', 'inline', 'text', '<b><TEXT></b>', '', 'no', 'text', 0, 0, 0, 'inline,link'), 0070 (2, 'i', 'inline', 'text', '<i><TEXT></i>', '', 'no', 'text', 0, 0, 0, 'inline,link'), * /install\module\5\sql\base.php in line 54 [ Method: BS_Install_Module_5_SQL_Update::run() ] 0049 if(FWS_FileUtils::write('dba/access.php',$content)) 0050 { 0051 $this->add_to_log_success(); 0052 0053 // now execute the db-instructions 0054 $this->run(); 0055 } 0056 else 0057 $this->add_to_log_failed(); 0058 } 0059 else 0060 $this->add_to_log_failed(); * /install\module\5\module.php in line 51 [ Method: BS_Install_Module_5_SQL_Base::start() ] 0046 if($type == 'full') 0047 $install = new BS_Install_Module_5_SQL_Full(); 0048 else 0049 $install = new BS_Install_Module_5_SQL_Update(); 0050 0051 $install->start(); 0052 0053 $tpl->add_variables(array( 0054 'log' => $install->get_log() 0055 )); 0056 } 0057 } * /fws\document\renderer\html\default.php in line 452 [ Method: BS_Install_Module_5::run() ] 0447 { 0448 $template = $this->get_template(); 0449 if($template !== null) 0450 $tpl->set_template($template); 0451 0452 $doc->get_module()->run(); 0453 0454 if($template !== null) 0455 $tpl->restore_template(); 0456 } 0457 } 0458 * /fws\document\renderer\html\default.php in line 370 [ Method: FWS_Document_Renderer_HTML_Default::content() ] 0365 0366 // content 0367 if($this->_show_content) 0368 { 0369 ob_start(); 0370 $this->content(); 0371 $res .= ob_get_contents(); 0372 ob_clean(); 0373 } 0374 0375 // footer 0376 if($this->_show_footer) * /fws\document.php in line 449 [ Method: FWS_Document_Renderer_HTML_Default::render() ] 0444 0445 if($this->_renderer === null) 0446 FWS_Helper::error('Please specify the renderer that should be used!'); 0447 0448 // render the document 0449 $res = $this->_renderer->render($this); 0450 0451 // send header and return result 0452 $this->_send_header(); 0453 $this->finish(); 0454 0455 // use gzip, if required * /install.php in line 44 [ Method: FWS_Document::render() ] 0039 $accessor->set_loader(new BS_Install_PropLoader()); 0040 FWS_Props::set_accessor($accessor); 0041 0042 // now render document 0043 $doc = FWS_Props::get()->doc(); 0044 echo $doc->render(); 0045 ?>
Show BBCode for the error-message (to post somewhere) |
|
|