Script-solution.de » Community » Support-Board » Foren » Boardsolution » Boardsolution v1.4x » Updatefehler von BS-1.36 auf BS-1.41
  • Willkommen, Gast!
  • Freitag, 10. Februar 2012, 05:05:17
 
Thema: "Updatefehler von BS-1.36 auf BS-1.41" [ Seite 1 ]

Kein neuer Beitrag schoeppsche , 19.02.2010, 11:49
Beitrag #1   

IP: n/a
Rang: * * * * O O O
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)

Gruss
schoeppsche

 
Kein neuer Beitrag Nils , 19.02.2010, 16:34
Beitrag #2   

IP: n/a
Rang: * * * * * * *
Registrierung: 01.07.2003, 18:55
Homepage: http://www.script-solution.de
Wohnort: Marburg
 

Forum-Gott mit 7594 Punkte, 7360 Beiträge
Hallo,

wenn die Tabelle bs_bbcodes bei dir schon existiert, hast du den Schritt 5 vermutlich mehrmals
durchgeführt. Kann das sein? Denn das führt natürlich zu Problemen. Also am Besten einfach nochmal
anfangen (alten Stand wiederherstellen).

mfg Nils

 
Kein neuer Beitrag schoeppsche , 20.02.2010, 09:53
Beitrag #3   

IP: n/a
Rang: * * * * O O O
Registrierung: 29.07.2007, 00:00
 

Erfahren mit 190 Punkte, 114 Beiträge
Hallo Nils,

danke für den Hinweis mit der Tabelle.
Habe es nochmal von vorne versucht und siehe da jetzt hat es funktioniert.

Gruss
schoeppsche

n/a n/a 1     ( Anzeige: 1 - 3 , Gesamt: 3 ) n/a n/a
User in diesem Thema: 0 Registrierte, 0 Versteckte, 1 Gast, 0 Bots
Keine
Thema-Aktionen:

Toggle Ähnliche Themen zu "Updatefehler von BS-1.36 auf BS-1.41"
  Antworten Aufrufe Themeneröffnung Letzter Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
  phpBB3 to bs14 converter Problem 6 4230 05.05.2011, 17:45
Von: Doerfler
09.05.2011, 19:50
Von: Nils Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
  phpbb3 zu 1.4x BS 2 3655 20.03.2011, 19:47
Von: ANT1
21.03.2011, 20:50
Von: ANT1 Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
Thema Konverter für phpBB 3.0.x -> BS 1.4x 0 4274 21.03.2011, 18:32
Von: Nils
21.03.2011, 18:32
Von: Nils Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
  Email abschalten 1 4449 23.02.2011, 13:13
Von: 4Webmaster
23.02.2011, 13:54
Von: Nils Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
  BS mit Joomla und Phoca Gallery ergibt ein Er ... 1 4362 23.12.2010, 10:54
Von: Hendriks_Island
23.12.2010, 12:09
Von: Nils Zum letzten Beitrag
  • 0.116921 Sek., 11 DB-Zugriffe, 6.219 MiB
  • Boardsolution v1.43 | © Nils Asmussen 2003-2009
Valid XHTML and CSS © 2003 - 2009 script-solution.de, Powered by Joomla!